initial creation
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
MAIL_USERNAME = 'buildasaasappwithflask@gmail.com'
|
||||
MAIL_PASSWORD = 'helicopterpantswalrusfoot'
|
||||
|
||||
STRIPE_SECRET_KEY = 'sk_test_nycOOQdO9C16zxubr2WWtbug'
|
||||
STRIPE_PUBLISHABLE_KEY = 'pk_test_ClU5mzNj1YxRRnrdZB5jEO29'
|
||||
@@ -0,0 +1,18 @@
|
||||
DEBUG = False
|
||||
|
||||
ANALYTICS_GOOGLE_UA = 'UA-abc123trackingcode-1'
|
||||
|
||||
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'
|
||||
Reference in New Issue
Block a user