27 lines
591 B
Python
27 lines
591 B
Python
|
import os
|
||
|
from flask import Flask
|
||
|
|
||
|
from app.users.api import bp as users_api_blueprint
|
||
|
|
||
|
def create_app(test_config=None):
|
||
|
app = Flask(__name__, instance_relative_config=True)
|
||
|
app.config.from_mapping(
|
||
|
SECRET_KEY='dev',
|
||
|
DATABASE=os.path.join(app.instance_path, 'db.sqlite')
|
||
|
)
|
||
|
|
||
|
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
|
||
|
|
||
|
app.register_blueprint(users_api_blueprint)
|
||
|
|
||
|
|
||
|
return app
|