mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
d45d98e300
* Add application * Dockerize the app * Fix 204 content-leength error * Rename database file * Add tests * Add README * Fix a typo in FastAPI example * Add docs on FastAPI + SQLAlchemy example * Update changelog * Add link to the example to README and other docs pages * Add EOF to the config.yml
24 lines
436 B
Python
24 lines
436 B
Python
"""Application module."""
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from .containers import Container
|
|
from . import endpoints
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
container = Container()
|
|
container.config.from_yaml('config.yml')
|
|
container.wire(modules=[endpoints])
|
|
|
|
db = container.db()
|
|
db.create_database()
|
|
|
|
app = FastAPI()
|
|
app.container = container
|
|
app.include_router(endpoints.router)
|
|
return app
|
|
|
|
|
|
app = create_app()
|