mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
fe01ad41d9
* Update application-single-container example * Update application-multiple-containers example * Update decoupled-packages example * Update movie lister example * Update CLI tutorial * Update sanic example * Update sanic example with wiring_config * Update fastapi example * Update fastapi-simple example * Update fastapi-sqlalchemy example * Update flask-blueprints example * Update flask example and tutorial * Update aiohttp example and tutorial * Update asyncio-daemon example and tutorial
22 lines
443 B
Python
22 lines
443 B
Python
"""Application module."""
|
|
|
|
from flask import Flask
|
|
from flask_bootstrap import Bootstrap
|
|
|
|
from .containers import Container
|
|
from . import views
|
|
|
|
|
|
def create_app() -> Flask:
|
|
container = Container()
|
|
container.config.github.auth_token.from_env("GITHUB_TOKEN")
|
|
|
|
app = Flask(__name__)
|
|
app.container = container
|
|
app.add_url_rule("/", "index", views.index)
|
|
|
|
bootstrap = Bootstrap()
|
|
bootstrap.init_app(app)
|
|
|
|
return app
|