Janus-backend / app.py.bak
DevodG's picture
Move root app.py to avoid confusion in Docker
956c864
raw
history blame contribute delete
120 Bytes
from app.main import app
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)