Files
web/backend/services/gateway/main.py
T

11 lines
328 B
Python

from fastapi import FastAPI
# Gateway service - handles complex operations that Caddy cannot
# This will be expanded later with routing logic to other services
if __name__ == "__main__":
app = FastAPI(title="Gateway Service")
import os, uvicorn
uvicorn.run(app, host="0.0.0.0", port=int(os.getenv("PORT", 8301)))