Prints some more config settings for debugging

This commit is contained in:
Aaron Louie 2020-04-15 14:14:58 -04:00
parent 5e924b3646
commit dffba7dc92
1 changed files with 5 additions and 0 deletions

View File

@ -7,3 +7,8 @@ DEVELOPMENT = True
TESTING = True
SQLALCHEMY_DATABASE_URI = "postgresql://crc_user:crc_pass@localhost:5432/crc_test"
TOKEN_AUTH_SECRET_KEY = "Shhhh!!! This is secret! And better darn well not show up in prod."
print('### USING TESTING CONFIG: ###')
print('SQLALCHEMY_DATABASE_URI = ', SQLALCHEMY_DATABASE_URI)
print('DEVELOPMENT = ', DEVELOPMENT)
print('TESTING = ', TESTING)