mirror of
https://github.com/sartography/protocol-builder-mock.git
synced 2025-02-12 07:36:41 +00:00
15 lines
470 B
Python
15 lines
470 B
Python
import os
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
NAME = "CR Connect Protocol Builder Mock"
|
|
CORS_ENABLED = False
|
|
DEVELOPMENT = True
|
|
TESTING = True
|
|
SQLALCHEMY_DATABASE_URI = "postgresql://postgres:@localhost:5432/pb_test"
|
|
SECRET_KEY = 'a really really really really long secret key'
|
|
|
|
print('+++ USING TRAVIS TESTING CONFIG: +++')
|
|
print('SQLALCHEMY_DATABASE_URI = ', SQLALCHEMY_DATABASE_URI)
|
|
print('DEVELOPMENT = ', DEVELOPMENT)
|
|
print('TESTING = ', TESTING)
|