Files
pillar/attract/config.py.example

29 lines
707 B
Plaintext
Raw Normal View History

2015-04-24 06:40:48 -03:00
import os
2014-04-20 12:09:16 +02:00
class Config(object):
# Configured for GMAIL
MAIL_SERVER = ''
MAIL_PORT = 465
MAIL_USE_SSL = True
MAIL_USERNAME = ''
MAIL_PASSWORD = ''
DEFAULT_MAIL_SENDER = ''
# Flask-Security setup
SECURITY_LOGIN_WITHOUT_CONFIRMATION = True
SECURITY_REGISTERABLE = True
SECURITY_RECOVERABLE = True
SECURITY_CHANGEABLE = True
SECUIRTY_POST_LOGIN = '/'
SECURITY_PASSWORD_HASH = ''
SECURITY_PASSWORD_SALT = ''
SECURITY_EMAIL_SENDER = ''
class Development(Config):
2015-04-24 06:40:48 -03:00
SECRET_KEY = ''
HOST = '0.0.0.0'
PORT = 5000
DEBUG = True
FILE_STORAGE = '{0}/application/static/storage'.format(
os.path.join(os.path.dirname(__file__)))