]>
Commit | Line | Data |
---|---|---|
047d4d29 MR |
1 | import os |
2 | basedir = os.path.abspath(os.path.dirname(__file__)) | |
3 | ||
4 | SQLALCHEMY_DATABASE_URI = 'postgresql://wpp:Yo2zoiRe@localhost/wpp' | |
5 | SQLALCHEMY_MIGRATE_REPO = os.path.join(basedir, 'db_repository') | |
6 | SQLALCHEMY_TRACK_MODIFICATIONS = True | |
7 | ||
8 | WTF_CSRF_ENABLED = True | |
9 | SECRET_KEY = os.urandom(32) | |
10 | ||
11 | # mail server settings | |
12 | MAIL_SERVER = 'localhost' | |
13 | MAIL_PORT = 25 | |
14 | MAIL_USERNAME = None | |
15 | MAIL_PASSWORD = None | |
16 | ||
17 | # administrator list | |
18 | ADMINS = ['mir@miras.org'] | |
19 |