-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.py
64 lines (52 loc) · 1.83 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
""" Configurations of the project. """
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config(object):
""" All constant configurations for the project. """
DEBUG = False
TESTING = False
CSRF_ENABLED = True
SECRET_KEY = "timele$$i$"
SQLALCHEMY_TRACK_MODIFICATIONS = False
# poster settings
POSTER_APPLICATION_ID = ""
POSTER_APPLICATION_SECRET = ""
POSTER_REDIRECT_URI = ""
POSTER_CODE = ""
# redis and cache settings
REDIS_HOST = os.environ.get("REDIS_HOST", "redis://localhost:6379")
RESULT_BACKEND = REDIS_HOST
BROKER_URL = REDIS_HOST
CACHE_SETTINGS = {
"CACHE_TYPE": "redis",
"CACHE_REDIS_URL": REDIS_HOST
}
MAIL_DEFAULT_SENDER = "[email protected]"
class ProductionConfig(Config):
""" Configurations for the production. """
DEBUG = False
SQLALCHEMY_DATABASE_URI = os.environ.get(
"SQLALCHEMY_DATABASE_URI",
"postgresql://timeless_user:timeless_pwd@localhost/timelessdb")
class StagingConfig(Config):
""" Configurations for the staging. """
DEVELOPMENT = True
DEBUG = False
SQLALCHEMY_DATABASE_URI = os.environ.get(
"SQLALCHEMY_DATABASE_URI",
"postgresql://timeless_user:timeless_pwd@localhost/timelessdb_dev")
class DevelopmentConfig(Config):
""" Configurations for the Development. """
DEVELOPMENT = True
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.environ.get(
"SQLALCHEMY_DATABASE_URI",
"postgresql://timeless_user:timeless_pwd@localhost/timelessdb_dev")
class TestingConfig(Config):
""" Configurations for the testing. """
TESTING = True
WTF_CSRF_ENABLED = False
CACHE_TYPE = None
SQLALCHEMY_DATABASE_URI = os.environ.get(
"SQLALCHEMY_DATABASE_URI",
"postgresql://timeless_user:timeless_pwd@localhost/timelessdb_test")