1
Fork 0
mirror of https://github.com/allthingslinux/tux.git synced 2024-10-02 08:39:09 +00:00

refactor(.env.example): restructure and categorize environment variables for better readability and understanding

feat(.env.example): add comments to clarify usage of each environment variable for better user guidance
style(.env.example): remove unused SUPABASE_KEY variable to clean up the code
This commit is contained in:
kzndotsh 2024-08-25 06:15:22 +00:00
parent d1bd866ea5
commit 9e11b5fb67

View file

@ -1,20 +1,27 @@
#
# Required
#
# If in production mode:
# DEV=False
PROD_DATABASE_URL=""
# PROD_SUPABASE_DB_PASSWORD=""
PROD_TOKEN=""
DEV=True
# If in development mode:
# DEV=True
DEV_DATABASE_URL=""
# DEV_SUPABASE_DB_PASSWORD=""
DEV_TOKEN=""
TZ="UTC"
DISCORD_GUILD=
#
# Optional
#
SUPABASE_KEY=""
SENTRY_URL=""
# PROD_COG_IGNORE_LIST="kick,ban"
# DEV_COG_IGNORE_LIST="mail, git"
PROD_COG_IGNORE_LIST=
DEV_COG_IGNORE_LIST=
GITHUB_APP_ID=
GITHUB_CLIENT_ID=""