File size: 241 Bytes
6d7471b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from __future__ import annotations
import uvicorn
from app import app
def main() -> None:
"""Project script entrypoint for deployment checks."""
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()
|