aboutsummaryrefslogtreecommitdiff
path: root/src/lb_app/__init__.py
blob: cf7fa7e924d3d316e1eb28165386cb2ebee25471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- 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