style-master / app.py
inflaton's picture
init code
1761643
raw
history blame contribute delete
228 Bytes
if __name__ == "__main__":
import os
import uvicorn
port = os.environ.get("PORT") or "7860"
reload = os.environ.get("RELOAD") == "true"
uvicorn.run("main:app", host="0.0.0.0", port=int(port), reload=reload)