Spaces:
Runtime error
Runtime error
File size: 210 Bytes
67c9653 | 1 2 3 4 5 6 7 8 9 10 | from fastapi import FastAPI
import uvicorn
# Import FastAPI app từ app.py
import sys
sys.path.insert(0, '/app')
from app import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000) |