mirror of
https://github.com/sartography/protocol-builder-mock.git
synced 2025-02-04 20:03:56 +00:00
10 lines
300 B
Python
10 lines
300 B
Python
import os
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
NAME = "CR Connect Protocol Builder Mock"
|
|
CORS_ENABLED = False
|
|
DEVELOPMENT = True
|
|
TESTING = False
|
|
SQLALCHEMY_DATABASE_URI = "postgresql://crc_user:crc_pass@localhost:5432/pb"
|
|
SECRET_KEY = 'a really really really really long secret key'
|