mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
20 lines
482 B
Python
20 lines
482 B
Python
"""Application module."""
|
|
|
|
from sanic import Sanic
|
|
|
|
from .containers import Container
|
|
from . import handlers
|
|
|
|
|
|
def create_app() -> Sanic:
|
|
"""Create and return Sanic application."""
|
|
container = Container()
|
|
container.config.from_yaml("config.yml")
|
|
container.config.giphy.api_key.from_env("GIPHY_API_KEY")
|
|
container.wire(modules=[handlers])
|
|
|
|
app = Sanic("giphy-navigator")
|
|
app.ctx.container = container
|
|
app.add_route(handlers.index, "/")
|
|
return app
|