SACC / main.py
cacodex's picture
Upload 43 files
8d5ac47 verified
Raw
History Blame Contribute Delete
297 Bytes
from __future__ import annotations
import os
from app import app
def main() -> None:
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "7860"))
app.run(host=host, port=port, debug=False, threaded=True, use_reloader=False)
if __name__ == "__main__":
main()