incorporeal-cms/incorporealcms/__init__.py

22 lines
641 B
Python
Raw Normal View History

"""create_app application factory function and similar things."""
import os
from flask import Flask
def create_app(test_config=None):
app = Flask(__name__, instance_relative_config=True)
# if it doesn't already exist, create the instance folder
os.makedirs(app.instance_path, exist_ok=True)
if test_config is None:
# load defaults from config provided with the application
app.config.from_object('incorporealcms.config.Config')
# load specific instance configurations
app.config.from_pyfile('config.py', silent=True)
else:
app.config.from_mapping(test_config)
return app