advent22/api/advent22_api/main.py
2022-10-08 23:36:16 +00:00

22 lines
356 B
Python

#!/usr/bin/python3
import uvicorn
from .settings import SETTINGS
def main() -> None:
"""
If the `main` script is run, `uvicorn` is used to run the app.
"""
uvicorn.run(
app="advent22_api:app",
host="0.0.0.0",
port=8000,
reload=not SETTINGS.production_mode,
)
if __name__ == "__main__":
main()