2019-12-18 14:02:17 -05:00
|
|
|
import os
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
2019-11-21 11:36:32 -05:00
|
|
|
NAME = "CR Connect Workflow"
|
|
|
|
CORS_ENABLED = False
|
|
|
|
DEVELOPMENT = True
|
2019-12-11 11:45:44 -05:00
|
|
|
TESTING = True
|
2020-02-04 21:42:09 -05:00
|
|
|
SQLALCHEMY_DATABASE_URI = "postgresql://crc_user:crc_pass@localhost:5432/crc_test"
|
2020-02-18 16:38:56 -05:00
|
|
|
TOKEN_AUTH_SECRET_KEY = "Shhhh!!! This is secret! And better darn well not show up in prod."
|
2020-04-15 14:14:58 -04:00
|
|
|
|
|
|
|
print('### USING TESTING CONFIG: ###')
|
|
|
|
print('SQLALCHEMY_DATABASE_URI = ', SQLALCHEMY_DATABASE_URI)
|
|
|
|
print('DEVELOPMENT = ', DEVELOPMENT)
|
|
|
|
print('TESTING = ', TESTING)
|