2020-02-05 15:17:47 -05:00
|
|
|
import os
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
NAME = "CR Connect Workflow"
|
|
|
|
DEVELOPMENT = True
|
|
|
|
TESTING = True
|
2020-05-25 22:47:11 -04:00
|
|
|
SQLALCHEMY_DATABASE_URI = "postgresql://postgres:@localhost:5432/crc_test"
|
2020-02-18 16:38:56 -05:00
|
|
|
TOKEN_AUTH_TTL_HOURS = 2
|
|
|
|
TOKEN_AUTH_SECRET_KEY = "Shhhh!!! This is secret! And better darn well not show up in prod."
|
2020-02-20 21:10:34 -05:00
|
|
|
FRONTEND_AUTH_CALLBACK = "http://localhost:4200/session" # Not Required
|
2020-05-25 22:47:11 -04:00
|
|
|
PB_ENABLED = False
|
2020-04-15 14:03:04 -04:00
|
|
|
|
|
|
|
print('+++ USING TRAVIS TESTING CONFIG: +++')
|
2020-05-25 22:47:11 -04:00
|
|
|
print('SQLALCHEMY_DATABASE_URI = ', SQLALCHEMY_DATABASE_URI)
|
2020-04-15 14:03:04 -04:00
|
|
|
print('DEVELOPMENT = ', DEVELOPMENT)
|
|
|
|
print('TESTING = ', TESTING)
|
|
|
|
print('FRONTEND_AUTH_CALLBACK = ', FRONTEND_AUTH_CALLBACK)
|