mirror of
https://github.com/fergalmoran/home-auto.git
synced 2026-02-15 12:14:08 +00:00
14 lines
385 B
Python
14 lines
385 B
Python
# Flask settings
|
|
FLASK_SERVER_NAME = 'dev.podnoms.com:5000'
|
|
FLASK_DEBUG = True # Do not use debug mode in production
|
|
|
|
# Flask-Restplus settings
|
|
RESTPLUS_SWAGGER_UI_DOC_EXPANSION = 'list'
|
|
RESTPLUS_VALIDATE = True
|
|
RESTPLUS_MASK_SWAGGER = False
|
|
RESTPLUS_ERROR_404_HELP = False
|
|
|
|
# SQLAlchemy settings
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///db.sqlite'
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|