ANI00's picture
Add root Dockerfile for HF Spaces build
af65c6d verified
raw
history blame contribute delete
223 Bytes
"""
HuggingFace Spaces Entry Point
Imports and runs the FastAPI app from server.main
"""
from server.main import app
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)