working db and tests

This commit is contained in:
2019-03-14 17:13:02 +01:00
parent c8b01b450b
commit 1c8cb55b46
3 changed files with 147 additions and 23 deletions

View File

@@ -15,6 +15,9 @@ from .serve_frontend import fe_bp
from .api import api_bp
app = Flask(__name__)
app.config.from_object('backend.config.Config')
app.register_blueprint(api_bp)
app.register_blueprint(fe_bp)