@@ -1,5 +1,12 @@
import os
import uvicorn
from app.main import app
if __name__ == "__main__":
uvicorn.run("app.main:app", host="0.0.0.0", port=9210, reload=False)
port = int(os.getenv("PORT", 8000))
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=port,
reload=False
)
The note is not visible to the blocked user.