Files
urbanLifeline/difyPlugin/run.py

13 lines
228 B
Python
Raw Normal View History

2025-12-30 13:38:32 +08:00
import uvicorn
2025-12-30 18:37:07 +08:00
from app.main import app
2025-12-30 13:38:32 +08:00
from app.config import settings
if __name__ == "__main__":
uvicorn.run(
2025-12-30 18:37:07 +08:00
app,
2025-12-30 13:38:32 +08:00
host="0.0.0.0",
port=settings.PORT,
2025-12-30 18:37:07 +08:00
reload=False,
workers=1
2025-12-30 13:38:32 +08:00
)