# -*- coding: utf-8 -*- """ liberationCenter ~~~~~~~~~~~~~~~~ Small AppCenter for apps. :copyright: (c) 2018 by neodarz. :licence: GPLv3, see LICENSE for more details. """ import os from flask import (Flask, render_template) def create_app(test_config=None): app = Flask(__name__, instance_relative_config=True) app.config.from_mapping( SECRET_KEY='dev', MONGO_URI= "mongodb://localhost:27017/liberationCenter", ) if test_config is None: app.config.from_pyfile('config.py', silent=True) else: app.config.from_mapping(test_config) try: os.makedirs(app.instance_path) except OSError: pass from . import api app.register_blueprint(api.bp, url_prefix='/api') return app