system-pri/backend/app/__init__.py

45 lines
1018 B
Python
Raw Normal View History

2022-05-15 21:20:05 +02:00
import os
2022-06-06 21:30:30 +02:00
from apiflask import APIFlask
2022-05-17 16:33:34 +02:00
from flask_cors import CORS
from flask_migrate import Migrate
2022-05-15 21:20:05 +02:00
from .api import api_bp
from .commands.clear_db import clear_db
from .commands.startapp import startapp
2022-05-15 21:20:05 +02:00
from .config import config
from .dependencies import db, ma
from .errors import register_error_handlers
from .utils import import_models
2022-05-15 21:20:05 +02:00
def create_app(config_name: str = "") -> APIFlask:
2022-05-15 21:20:05 +02:00
if config_name is None:
config_name = os.environ.get("FLASK_ENV")
app = APIFlask(__name__, docs_path="/")
2022-05-15 21:20:05 +02:00
app.config.from_object(config.get(config_name) or config.get("development"))
if app.config["ENABLE_CORS"]:
2022-05-17 16:33:34 +02:00
CORS(app)
2022-05-15 21:20:05 +02:00
db.init_app(app)
ma.init_app(app)
if config_name != "production":
with app.app_context():
import_models()
Migrate(app, db)
app.register_blueprint(api_bp)
2022-05-15 21:20:05 +02:00
# register commands
app.cli.add_command(startapp)
app.cli.add_command(clear_db)
2022-05-15 21:20:05 +02:00
# register errors
2022-06-06 21:30:30 +02:00
register_error_handlers(app)
2022-05-15 21:20:05 +02:00
return app