-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
46 lines (39 loc) · 1.22 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
from pathlib import Path
from dotenv import load_dotenv
import os
#Dotenv Configuration
env_path = Path('.')/'.env'
load_dotenv(dotenv_path=env_path)
class Config:
'''
General configuration class
'''
SECRET_KEY = os.getenv("SECRET_KEY") #secret key for wtf forms
UPLOADED_PHOTOS_DEST = 'app/static/photos' #storage location of uploaded photos in the app
# app email configurations
MAIL_SERVER = 'smtp.googlemail.com'
MAIL_PORT = 587
MAIL_USE_TLS = True
MAIL_USERNAME = os.getenv("MAIL_USERNAME")
MAIL_PASSWORD = os.getenv("MAIL_PASSWORD")
class ProdConfig(Config):
'''
Test configuration child class
'''
SQLALCHEMY_DATABASE_URI = 'postgresql://oclczfxlojwown:7848830183b333c34c82252cc505bbef8ad42f6247e849801436ae10736bd189@ec2-34-197-135-44.compute-1.amazonaws.com:5432/d45ffsiu3qs3l2'
class TestConfig(Config):
'''
Production configuration child class
'''
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://toshiba:@localhost/blogs_test'
class DevConfig(Config):
'''
Development configuration child class
'''
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://toshiba:@localhost/blogs'
DEBUG = True
config_options = {
'development':DevConfig,
'production': ProdConfig,
'test':TestConfig
}