calendar
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-26 14:00:59 +09:00
parent 7651c01245
commit 0724018895
2 changed files with 107 additions and 98 deletions

View File

@@ -771,5 +771,7 @@ app.openapi = custom_openapi
if __name__ == "__main__":
import uvicorn
import os
uvicorn.run(app, host="0.0.0.0", port=8000)
port = int(os.environ.get("PORT", 8000))
uvicorn.run(app, host="0.0.0.0", port=port)