123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # -*- encoding: utf-8 -*-
- """
- License: MIT
- Copyright (c) 2019 - present AppSeed.us
- """
-
- import os
- from os import environ
-
- class Config(object):
-
- basedir = os.path.abspath(os.path.dirname(__file__))
-
- SECRET_KEY = 'key'
-
- # This will create a file in <app> FOLDER
- SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'database.db')
-
- # For 'in memory' database, please use:
- # SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:'
-
- SQLALCHEMY_TRACK_MODIFICATIONS = False
-
- # THEME SUPPORT
- # if set then url_for('static', filename='', theme='')
- # will add the theme name to the static URL:
- # /static/<DEFAULT_THEME>/filename
- # DEFAULT_THEME = "themes/dark"
- DEFAULT_THEME = None
-
-
- class ProductionConfig(Config):
- DEBUG = False
-
- # Security
- SESSION_COOKIE_HTTPONLY = True
- REMEMBER_COOKIE_HTTPONLY = True
- REMEMBER_COOKIE_DURATION = 3600
-
- # PostgreSQL database
- SQLALCHEMY_DATABASE_URI = 'postgresql://{}:{}@{}:{}/{}'.format(
- environ.get('APPSEED_DATABASE_USER', 'appseed'),
- environ.get('APPSEED_DATABASE_PASSWORD', 'appseed'),
- environ.get('APPSEED_DATABASE_HOST', 'db'),
- environ.get('APPSEED_DATABASE_PORT', 5432),
- environ.get('APPSEED_DATABASE_NAME', 'appseed')
- )
-
-
- class DebugConfig(Config):
- DEBUG = True
-
-
- config_dict = {
- 'Production': ProductionConfig,
- 'Debug': DebugConfig
- }
|