forked from gergely/calendar-social
11 lines
273 B
Python
11 lines
273 B
Python
DEBUG = True
|
|
ENV = 'dev'
|
|
REGISTRATION_ENABLED = True
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///local.db'
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
SECRET_KEY = 'ThisIsNotSoSecret'
|
|
SECURITY_PASSWORD_HASH = 'bcrypt'
|
|
SECURITY_PASSWORD_SALT = SECRET_KEY
|
|
SECURITY_REGISTERABLE = False
|