]> git.datanom.net - wpp.git/blame - config.py
rm test access
[wpp.git] / config.py
CommitLineData
047d4d29
MR
1import os
2basedir = os.path.abspath(os.path.dirname(__file__))
3
4SQLALCHEMY_DATABASE_URI = 'postgresql://wpp:Yo2zoiRe@localhost/wpp'
5SQLALCHEMY_MIGRATE_REPO = os.path.join(basedir, 'db_repository')
6SQLALCHEMY_TRACK_MODIFICATIONS = True
7
8WTF_CSRF_ENABLED = True
9SECRET_KEY = os.urandom(32)
10
11# mail server settings
12MAIL_SERVER = 'localhost'
13MAIL_PORT = 25
14MAIL_USERNAME = None
15MAIL_PASSWORD = None
16
17# administrator list
18ADMINS = ['mir@miras.org']
19
This page took 0.028289 seconds and 5 git commands to generate.