Prints some more config settings for debugging
This commit is contained in:
parent
5e924b3646
commit
dffba7dc92
|
@ -7,3 +7,8 @@ DEVELOPMENT = True
|
||||||
TESTING = True
|
TESTING = True
|
||||||
SQLALCHEMY_DATABASE_URI = "postgresql://crc_user:crc_pass@localhost:5432/crc_test"
|
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."
|
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)
|
||||||
|
|
Loading…
Reference in New Issue