-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
36 lines (31 loc) · 1.11 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
""" Setting Up the App Configuration"""
import os
class Config:
SECRET_KEY = os.environ.get("SECRET_KEY") or os.urandom(16)
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ECHO = False
DEBUG_TB_INTERCEPT_REDIRECTS = False
WTF_CSRF_ENABLED = False
PRESERVE_CONTEXT_ON_EXCEPTION = False
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
""" Configuration for Development Environment. """
ENV = 'development'
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.environ.get('DEVELOPMENT_DATABASE') or 'postgresql:///recipe'
class TestingConfig(Config):
"""Configurations for Testing Environment."""
TESTING = True
SQLALCHEMY_DATABASE_URI = os.environ.get('TEST_DATABASE') or 'postgresql:///recipe_test'
class ProductionConfig(Config):
"""Configurations for Production Environment."""
ENV = 'production'
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL', 'postgresql:///recipe')
app_config = {
'default': DevelopmentConfig,
'development': DevelopmentConfig,
'testing': TestingConfig,
'production': ProductionConfig
};