-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
36 lines (24 loc) · 843 Bytes
/
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
import os
basedir = os.path.abspath(os.path.dirname(__file__))
from flask_jwt_extended import JWTManager
class Config:
SECRET_KEY = "some_unique_key"
SQLALCHEMY_TRACK_MODIFICATIONS = False
APP_ADMIN = "[email protected]" # place your email here
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'data-dev.sqlite')
class TestingConfig(Config):
TESTING = True
SQLALCHEMY_DATABASE_URI = 'sqlite://'
class ProductionConfig(Config):
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'data.sqlite')
config = {
'development': DevelopmentConfig,
'testing': TestingConfig,
'production': ProductionConfig,
'default': DevelopmentConfig
}