-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.py
More file actions
executable file
·95 lines (75 loc) · 2.82 KB
/
config.py
File metadata and controls
executable file
·95 lines (75 loc) · 2.82 KB
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
# -*- coding: utf-8 -*-
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
""" Application Configurations """
SECRET_KEY = os.environ.get(u'SECRET_KEY') or os.urandom(24)
SSL_DISABLE = True
SQLALCHEMY_ECHO = False
SQLALCHEMY_COMMIT_ON_TEARDOWN = True
SQLALCHEMY_RECORD_QUERIES = True
SQLALCHEMY_TRACK_MODIFICATIONS = True
SLOW_DB_QUERY_TIME = 0.5
MAIL_SERVER = os.environ.get(u'MAIL_SERVER')
MAIL_PORT = int(os.environ.get(u'MAIL_PORT') or u'25')
MAIL_USERNAME = os.environ.get(u'MAIL_USERNAME')
MAIL_PASSWORD = os.environ.get(u'MAIL_PASSWORD')
MAIL_SUBJECT_PREFIX = u'[PySite]'
MAIL_SENDER = u'PySite Admin <%s>' % os.environ.get(u'MAIL_USERNAME')
MAIL_NOTIFICATION = u'MAIL NOTIFICATION BOYD HERE....'
@staticmethod
def init_app(app):
app.data_path = os.path.join(basedir, u'data')
#
# Config example for 'SQLALCHEMY_DATABASE_URI':
#
# MYSQL : u'mysql://flasky:654321@localhost/pysite'
# SQLite : u'sqlite:///' + os.path.join(basedir, u'data/data.sqlite')
#
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = u'sqlite:///' + os.path.join(basedir, u'data/data-dev.sqlite')
class TestingConfig(Config):
TESTING = True
SQLALCHEMY_DATABASE_URI = u'sqlite:///' + os.path.join(basedir, u'data/data-test.sqlite')
WTF_CSRF_ENABLED = False
class ProductionConfig(Config):
SQLALCHEMY_DATABASE_URI = u'sqlite:///' + os.path.join(basedir, u'data/data.sqlite')
@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, u'MAIL_USERNAME', None) is not None:
credentials = (cls.MAIL_USERNAME, cls.MAIL_PASSWORD)
if getattr(cls, u'MAIL_USE_TLS', None):
secure = ()
mail_handler = SMTPHandler(
mailhost=(cls.MAIL_SERVER, cls.MAIL_PORT),
fromaddr=cls.MAIL_SENDER,
toaddrs=[cls.MAIL_NOTIFICATION],
subject=cls.MAIL_SUBJECT_PREFIX + u'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 = {
u'development': DevelopmentConfig,
u'testing': TestingConfig,
u'production': ProductionConfig,
u'unix': UnixConfig,
u'default': DevelopmentConfig
}