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