calendar-social/calsocial/config_development.py

18 lines
477 B
Python
Raw Normal View History

"""Configuration file for the development environment
"""
ENV = 'development'
#: If ``True``, registration on the site is enabled.
2018-06-29 12:00:45 +00:00
REGISTRATION_ENABLED = True
#: The default time zone
DEFAULT_TIMEZONE = 'Europe/Budapest'
2018-06-29 12:00:45 +00:00
DEBUG = True
2018-06-28 12:41:14 +00:00
SQLALCHEMY_DATABASE_URI = 'sqlite:///local.db'
SQLALCHEMY_TRACK_MODIFICATIONS = False
2018-06-29 06:03:49 +00:00
SECRET_KEY = 'ThisIsNotSoSecret'
SECURITY_PASSWORD_HASH = 'bcrypt'
SECURITY_PASSWORD_SALT = SECRET_KEY
2018-06-29 12:00:45 +00:00
SECURITY_REGISTERABLE = False
CACHE_TYPE = 'simple'