Skip to content

Commit

Permalink
Add .env_sample
Browse files Browse the repository at this point in the history
  • Loading branch information
kenanwright1988 committed Sep 12, 2024
1 parent c304a9c commit de7aca0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .env_sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
DEVELOPMENT=1
SECRET_KEY="your_secret_key_here"
SITE_NAME="localhost"
SLACK_ENABLED=True
SLACK_BOT_TOKEN="your_slack_bot_token_here"
SLACK_WORKSPACE="example-workspace"
SUPPORT_EMAIL = '[email protected]'

# dev only
DBHOST=127.0.0.1
DBPORT=3306
DBNAME=hackathons
DBUSER=hackthon_user
DBPASS=gummyball

# http for dev
ACCOUNT_DEFAULT_HTTP_PROTOCOL=http

# to be used with Mailhog
EMAIL_BACKEND='django.core.mail.backends.smtp.EmailBackend'
EMAIL_PORT=1025
EMAIL_HOST=smtp

0 comments on commit de7aca0

Please sign in to comment.