You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import os
|
|
|
|
|
|
class Config(object):
|
|
DEBUG = False
|
|
TESTING = False
|
|
URL_PREFIX = ''
|
|
|
|
|
|
class ProductionConfig(Config):
|
|
DEBUG = False
|
|
URL_PREFIX = os.environ.get("URL_PREFIX")
|
|
|
|
|
|
class DevelopmentConfig(Config):
|
|
ENV = "development"
|
|
DEVELOPMENT = True
|
|
DEBUG = True
|