-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* starting to add get playlist * get_playlist command * remove unused code * lower timer * update .env.example to include postgres db * fix name * cargo update * add settings command back * add settings command back * add settings command back * remove separate config module * fix linting * .build.yml * asdf * cleanup config * reuse pool and better organize commands * linting * implement more logging * version bump and fix linting * asdf * docker build * docker image builds, not to get it to rfun... * put back some admin commands and fix stuff * self-deafen toggle * tarpaulin ignore * add clean command * add libraries for tracing * linting * re-factoring * continuing to refactor the settings commands * refactoring settings * Reset volume on summon * add get_volume * volume command and cleanup * fix linting * refacotiring settings * cleanup more * add toggle self deafen command * cargo update * add names to guild configs * should test this * Fix volume sutff (again) * return user from insert_or_update_user * update dockerfile and compose * fix docker file and bell labs * add -> add_to * fix queued embed
- Loading branch information
1 parent
dd5c327
commit d8bab74
Showing
76 changed files
with
2,430 additions
and
897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# [REQUIRED] To authenticate with Discord, you must create a Discord app. | ||
# See more: https://discord.com/developers/applications | ||
DISCORD_TOKEN=XXXXXX | ||
DISCORD_APP_ID=XXXXXX | ||
export DISCORD_TOKEN=XXXXXX | ||
export DISCORD_APP_ID=XXXXXX | ||
|
||
# [REQUIRED] Postgres database URL for the bot to use. | ||
# | ||
export DATABASE_URL=postgresql://postgres:mysecretpassword@localhost:5432/postgres | ||
export PG_USER=postgres | ||
export PG_PASSWORD=mysecretpassword | ||
|
||
# [Optional] To support Spotify links, you must create a Spotify app. | ||
# See more: https://developer.spotify.com/dashboard/applications | ||
SPOTIFY_CLIENT_ID=XXXXXX | ||
SPOTIFY_CLIENT_SECRET=XXXXXX | ||
export SPOTIFY_CLIENT_ID=XXXXXX | ||
export SPOTIFY_CLIENT_SECRET=XXXXXX | ||
|
||
# [Optional] OpenAI API key for the chatgpt feature. | ||
# | ||
OPENAI_KEY=XXXXXX | ||
|
||
# [Optional] Database URL for the bot to use. | ||
# | ||
DATABASE_URL=postgres:///data/crackedmusic.db | ||
PG_USER=postgres | ||
PG_PASSWORD=mysecretpassword | ||
export OPENAI_API_KEY=XXXXXX |
94 changes: 94 additions & 0 deletions
94
.sqlx/query-02c8f978cd690b91973a5e5cb6e3822468e1a6546e2f6d69ca120aacbb1939c7.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
95 changes: 95 additions & 0 deletions
95
.sqlx/query-63009b8eb1450fe81fda9303dc379c8622f79390cfeaab7f4cd7e339027cfc60.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
46 changes: 46 additions & 0 deletions
46
.sqlx/query-91d288b6cc8271a6b5830905c020b8bf17634b822ed5b9b7627df035aed7898c.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
65 changes: 65 additions & 0 deletions
65
.sqlx/query-9209beacb757209ae4ec7c8fd4d140e6d60039fadcf4f31340da1a572be4df6d.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.