forked from egjs1/cci-demo-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
122 lines (100 loc) · 3.44 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'hard to guess string'
MAIL_SERVER = 'mail.gandi.net'
MAIL_PORT = 587
MAIL_USE_TLS = True
MAIL_USERNAME = os.environ.get('MAIL_USERNAME')
MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD')
MAIL_SUBJECT_PREFIX = '[braindump]'
MAIL_SENDER = 'braindump <[email protected]>'
APP_ADMIN = os.environ.get('BRAINDUMP_ADMIN')
SQLALCHEMY_TRACK_MODIFICATIONS = False
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = 'postgresql://{0}:{1}@{2}/{3}'.format(
'braindump',
'braindump',
'localhost',
'braindump')
@classmethod
def init_app(cls, app):
Config.init_app(app)
with app.app_context():
from app.models import db
from app.models import User, Notebook
db.init_app(app)
db.create_all()
# Check if User Already Created
u = User.query.filter_by(email='[email protected]').first()
if u:
pass
else:
# Create Admin User
u = User(
email='[email protected]', password='password',
confirmed=True)
db.session.add(u)
db.session.commit()
# Create Default Notebook for Admin User
nb = Notebook(
title='Default Notebook',
author_id=u.id)
db.session.add(nb)
db.session.commit()
class TestingConfig(Config):
DEBUG = True
TESTING = True
WTF_CSRF_ENABLED = False
SQLALCHEMY_DATABASE_URI = 'postgresql://{0}@{1}/{2}'.format(
'ubuntu',
'localhost',
'circle_test')
class ProductionConfig(Config):
SQLALCHEMY_DATABASE_URI = 'postgresql://{0}:{1}@{2}/{3}'.format(
os.environ.get('DB_USER'),
os.environ.get('DB_PASS'),
os.environ.get('DB_HOST'),
os.environ.get('DB_NAME'))
@classmethod
def init_app(cls, app):
Config.init_app(app)
# email errors to the administrators
import logging
from logging.handlers import SMTPHandler
credentials = None
secure = None
if getattr(cls, 'MAIL_USERNAME', None) is not None:
credentials = (cls.MAIL_USERNAME, cls.MAIL_PASSWORD)
if getattr(cls, 'MAIL_USE_TLS', None):
secure = ()
mail_handler = SMTPHandler(
mailhost=(cls.MAIL_SERVER, cls.MAIL_PORT),
fromaddr=cls.MAIL_SENDER,
toaddrs=[cls.APP_ADMIN],
subject=cls.MAIL_SUBJECT_PREFIX + ' Application Error',
credentials=credentials,
secure=secure)
mail_handler.setLevel(logging.ERROR)
app.logger.addHandler(mail_handler)
class UnixConfig(ProductionConfig):
@classmethod
def init_app(cls, app):
ProductionConfig.init_app(app)
# log to syslog
import logging
from logging.handlers import SysLogHandler
syslog_handler = SysLogHandler()
syslog_handler.setLevel(logging.WARNING)
app.logger.addHandler(syslog_handler)
config = {
'development': DevelopmentConfig,
'testing': TestingConfig,
'production': ProductionConfig,
'unix': UnixConfig,
'default': DevelopmentConfig
}