forked from palamario/palamar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
53 lines (46 loc) · 1.67 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
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'hard to guess string'
SQLALCHEMY_COMMIT_ON_TEARDOWN = True
DASH_MAIL_SUBJECT_PREFIX = '[dash-stack]'
DASH_MAIL_SENDER = 'dash-stack Admin <[email protected]>'
DASH_ADMIN = "[email protected]"
@staticmethod
def init_app(dash):
pass
class DevelopmentConfig(Config):
DEBUG = True
DEBUG_TB_ENABLED = True
MAIL_SERVER = 'localhost'
MAIL_PORT = 25
MAIL_USE_TLS = True
MAIL_USERNAME = os.environ.get('MAIL_USERNAME')
MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD')
SQLALCHEMY_DATABASE_URI = os.environ.get('DEV_DATABASE_URL') or \
('mysql+pymysql://root:Asp.Net238515@localhost/dashDev')
SQLALCHEMY_TRACK_MODIFICATIONS = True
WTF_CSRF_ENABLED = True
SECRET_KEY = 'you-will-never-guess'
# Debug configuration
FLASK_DEBUG = True
SQLALCHEMY_ECHO = True
DEBUG_TB_INTERCEPT_REDIRECTS = False
class TestingConfig(Config):
TESTING = True
SQLALCHEMY_DATABASE_URI = os.environ.get('TEST_DATABASE_URL') or \
('mysql://root:Asp.Net238515@localhost/dashTest')
SQLALCHEMY_TRACK_MODIFICATIONS = True
WTF_CSRF_ENABLED = False
class ProductionConfig(Config):
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL') or \
('mysql://root:Asp.Net238515@localhost/dash')
SQLALCHEMY_TRACK_MODIFICATIONS = False
WTF_CSRF_ENABLED = True
SECRET_KEY = 'you-will-never-guess'
config = {
'development': DevelopmentConfig,
'testing': TestingConfig,
'production': ProductionConfig,
'default': DevelopmentConfig
}