Files
geozoner-back/run.py
Redsandy 3ea4fb4771 init
2026-03-14 18:48:57 +03:00

17 lines
279 B
Python

"""Local development entry point.
Usage:
uv run python run.py
"""
import uvicorn
from app.config import APP_HOST, APP_PORT, DEBUG
if __name__ == "__main__":
uvicorn.run(
"app.main:app",
host=APP_HOST,
port=APP_PORT,
reload=DEBUG,
)