-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.py.example
87 lines (69 loc) · 2.39 KB
/
config.py.example
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
#!/usr/bin/env python
#coding=utf-8
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = ''
SSL_DISABLE = False
SQLALCHEMY_COMMIT_ON_TEARDOWN = True
# 这个是服务器所在的地址,不要加上尾斜线
ALGALON_SERVER_HOST = 'http://localhost'
ALGALON_SERVER_PORT = 6969
# 这里是邮件服务器配置,改为相应的邮件服务器
MAIL_SERVER = ''
MAIL_PORT = 25
MAIL_USE_TLS = True
MAIL_USERNAME = ''
MAIL_PASSWORD = ''
ALGALON_ADMIN = ''
ALGALON_MAIL_SUBJECT_PREFIX = ''
ALGALON_MAIL_SENDER = ''
#这里是OpenID服务器的地址
OPENID2_YADIS = ''
OPENID2_LOGOUT = ''
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = 'mysql://user:pass@localhost/algalon_dev?charset=utf8'
class TestingConfig(Config):
TESTING = True
SQLALCHEMY_DATABASE_URI = 'mysql://user:pass@localhost/algalon_test?charset=utf8'
WTF_CSRF_ENABLED = False
class ProductionConfig(Config):
# 这里配置mysql服务器地址
SQLALCHEMY_DATABASE_URI = 'mysql://user:pass@localhost/algalon?charset=utf8'
@classmethod
def init_app(cls, app):
Config.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)
# 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.ALGALON_MAIL_SENDER,
toaddrs=[cls.ALGALON_ADMIN],
subject=cls.ALGALON_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': ProductionConfig
}