mirror of
https://github.com/sartography/protocol-builder-mock.git
synced 2025-01-12 08:44:46 +00:00
10 lines
267 B
Python
10 lines
267 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 = 'sqlite:///app.db'
|
|
SECRET_KEY = 'a really really really really long secret key'
|