-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
31 lines (24 loc) · 959 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
import os
from passlib.context import CryptContext
# To load config variables from object.
class BaseConfig:
DEBUG = False
TESTING = False
SECRET_KEY = os.getenv("SECRET_KEY")
SQLALCHEMY_TRACK_MODIFICATIONS = False
CRYPTO_CONTEXT = CryptContext(schemes=[
"bcrypt"], deprecated="auto", bcrypt__rounds=os.getenv("PASS_ENCRYPT_ROUNDS"))
MAIL_SERVER = os.getenv("MAIL_SERVER")
MAIL_PORT = os.getenv("MAIL_PORT")
MAIL_PASSWORD = os.getenv("MAIL_PASSWORD")
MAIL_USERNAME = os.getenv("MAIL_USERNAME")
class DevelopmentConfig(BaseConfig):
DEBUG = True
TESTING = True
SQLALCHEMY_DATABASE_URI = os.getenv("DEV_DATABASE_URL")
ROLE_CHANGE_PASS_DEV = os.getenv("ROLE_CHANGE_PASS_DEV")
MAIL_DEBUG = True
class ProdConfig(BaseConfig):
DEBUG = False
SQLALCHEMY_DATABASE_URI = os.getenv("PROD_DATABASE_URL")
ROLE_CHANGE_PASS_PROD = os.getenv("ROLE_CHANGE_PASS_PROD")