-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
43 lines (29 loc) · 865 Bytes
/
config.py
File metadata and controls
43 lines (29 loc) · 865 Bytes
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
import os
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
class Config:
DEBUG = False
DEVELOPMENT = False
SECRET_KEY = os.environ.get("SECRET_KEY", os.urandom(24))
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ECHO = False
SLOW_DB_QUERY_TIME = 0.5
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUG = True
DEVELOPMENT = True
SQLALCHEMY_DATABASE_URI = os.environ.get(
"DATABASE_URL"
) or "sqlite:///" + os.path.join(BASE_DIR, "dev.sqlite3")
class ProductionConfig(Config):
SQLALCHEMY_DATABASE_URI = os.environ.get(
"DATABASE_URL"
) or "sqlite:///" + os.path.join(BASE_DIR, "prod.sqlite3")
@classmethod
def init_app(cls, app):
Config.init_app(app)
config = {
"prod": ProductionConfig,
"dev": DevelopmentConfig,
}