Files
courses/bsawf/13-creating-a-custom-admin-dashboard/instance/settings.py.production_example
T
2025-05-20 11:57:43 -04:00

17 lines
545 B
Plaintext

DEBUG = False
SERVER_NAME = 'nickjanetakis.com'
SECRET_KEY = 'generateastrong128chartoken'
MAIL_USERNAME = 'you@realemailaccount.com'
MAIL_PASSWORD = 'thebestpasswordyouevermade'
CELERY_BROKER_URL = 'redis://:amuchmoresecurepassword@redis:6379/0'
CELERY_RESULT_BACKEND = 'redis://:amuchmoresecurepassword@redis:6379/0'
db_uri = 'postgresql://snakeeyes:themostsecurepasswordevercreated@postgres:5432/snakeeyes'
SQLALCHEMY_DATABASE_URI = db_uri
SEED_ADMIN_EMAIL = 'you@realemailaccount.com'
SEED_ADMIN_PASSWORD = 'thebestpasswordyouevermade'