-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
71 lines (60 loc) · 2.29 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
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = os.environ.get('XUEJIAO-BLOG-SECRET-KEY') or "xuejiao's blog"
SQLALCHEMY_COMMIT_ON_TEARDOWN = True
MAIL_SERVER = 'smtp.163.com'
MAIL_PORT = 25
MAIL_USE_TLS = False
MAIL_USERNAME = os.environ.get('EMAIL_163_USERNAME')
MAIL_PASSWORD = os.environ.get('EMAIL_163_PASSWORD')
BLOG_MAIL_SUBJECT_PREFIX = "[XUEJIAO'S BLOG]"
BLOG_MAIL_SENDER = 'Xue Jiao <[email protected]>'
BLOG_ADMIN = os.environ.get('XUEJIAO-BLOG-ADMIN')
BLOG_POSTS_PER_PAGE = 20
BLOG_FOLLOWERS_PER_PAGE = 50
BLOG_COMMENTS_PER_PAGE = 30
SQLALCHEMY_RECORD_QUERIES = True
BLOG_SLOW_DB_QUERY_TIME = 0.5
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUT = True
SQLALCHEMY_DATABASE_URI = os.environ.get('DEV_DATABASE_URL') or \
'sqlite:///' + os.path.join(basedir, 'data-dev.sqlite')
class TestingConfig(Config):
TESTING = True
WTF_CSRF_ENABLED = False
SQLALCHEMY_DATABASE_URI = os.environ.get('TEST_DATABASE_URL') or \
'sqlite:///' + os.path.join(basedir, 'data-test.sqlite')
class ProductionConfig(Config):
SQLALCHMEY_DATABASE_URI = os.environ.get('DATABASE_URL') or \
'sqlite:///' + os.path.join(basedir, 'data.sqlite')
@classmethod
def init_app(cls, app):
Config.init_app(app)
# email errors to the admin
import logging
from logging.handlers import SMTPHandler
credentials = None
secure = None
if getattr(cls, 'EMAIL_163_USERNAME', None) is not None:
credentials = (cls.EMAIL_163_USERNAME, cls.EMAIL_163_PASSWORD)
if getattr(cls, 'MAIL_USE_TLS', None):
secure = ()
mail_handler = SMTPHandler(
mailhost=(cls.MAIL_SERVER, cls.MAIL_POST),
fromaddr=cls.BLOG_MAIL_SENDER,
toaddrs=[cls.BLOG_ADMIN],
subject=cls.BLOG_MAIL_SUBJECT_PREFIX + ' Application Error',
credentials=credentials,
secure=secure)
mail_handler.setlevel(logging.ERROR)
app.logger.addHandler(mail_handler)
config = {
'development': DevelopmentConfig,
'testing': TestingConfig,
'production': ProductionConfig,
'default': DevelopmentConfig
}