2019-12-18 19:02:17 +00:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
|
|
|
import connexion
|
|
|
|
from flask_marshmallow import Marshmallow
|
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
from flask_migrate import Migrate
|
|
|
|
|
2019-12-18 19:16:26 +00:00
|
|
|
|
2019-12-18 19:02:17 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
connexion_app = connexion.FlaskApp(__name__)
|
|
|
|
|
|
|
|
app = connexion_app.app
|
|
|
|
app.config.from_object('config.default')
|
|
|
|
#app.config.from_pyfile('config.py')
|
|
|
|
if "TESTING" in os.environ and os.environ["TESTING"] == "true":
|
|
|
|
app.config.from_object('config.testing')
|
|
|
|
app.config.from_pyfile('testing.py')
|
|
|
|
|
|
|
|
|
|
|
|
db = SQLAlchemy(app)
|
|
|
|
migrate = Migrate(app, db)
|
|
|
|
ma = Marshmallow(app)
|
|
|
|
|
|
|
|
from crc import models
|
|
|
|
|
|
|
|
connexion_app.add_api('api.yml')
|
|
|
|
|
|
|
|
@app.cli.command()
|
|
|
|
def load_example_data():
|
|
|
|
"""Load example data into the database."""
|
2019-12-18 19:16:26 +00:00
|
|
|
from example_data import ExampleDataLoader
|
|
|
|
ExampleDataLoader().load_all()
|