You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
import os
|
|
|
|
|
|
class Config(object):
|
|
SECRET_KEY = 'shhhh'
|
|
APP_DIR = os.path.abspath(os.path.dirname(__file__)) # This directory
|
|
PROJECT_ROOT = os.path.abspath(os.path.join(APP_DIR, os.pardir))
|
|
BCRYPT_LEVEL = 13
|
|
DEBUG_TB_ENABLED = False # Disable Debug toolbar
|
|
DEBUG_TB_INTERCEPT_REDIRECTS = False
|
|
CACHE_TYPE = "simple" # Can be "memcached", "redis", etc.
|
|
|
|
|
|
class ProdConfig(Config):
|
|
'''Production configuration.'''
|
|
ENV = 'prod'
|
|
DEBUG = False
|
|
SQLALCHEMY_DATABASE_URI = 'postgresql://localhost/example'
|
|
DEBUG_TB_ENABLED = False # Disable Debug toolbar
|
|
|
|
|
|
class DevConfig(Config):
|
|
'''Development configuration.'''
|
|
ENV = 'dev'
|
|
DEBUG = True
|
|
DB_NAME = "dev.db"
|
|
# Put the db file in project root
|
|
DB_PATH = os.path.join(Config.PROJECT_ROOT, DB_NAME)
|
|
SQLALCHEMY_DATABASE_URI = "sqlite:///{0}".format(DB_PATH)
|
|
DEBUG_TB_ENABLED = True
|
|
ASSETS_DEBUG = True # Don't bundle/minify static assets
|
|
CACHE_TYPE = "simple" # Can be "memcached", "redis", etc.
|
|
|