mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
7 lines
221 B
Python
7 lines
221 B
Python
# Gateway service - runs the main gateway app from backend/app.py
|
|
|
|
if __name__ == "__main__":
|
|
from backend.app import app
|
|
import os, uvicorn
|
|
uvicorn.run(app, host="0.0.0.0", port=int(os.getenv("PORT", 8300)))
|