Antigravity AI
Initial deployment of FaceVision AI: Combined Next.js and FastAPI with Docker
954551b
raw
history blame contribute delete
338 Bytes
#!/usr/bin/env python
"""Entry point for running the FastAPI backend directly with Python."""
import uvicorn
from dotenv import load_dotenv
load_dotenv() # Load .env file
if __name__ == "__main__":
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=8000,
reload=True,
log_level="info",
)