Gradii's picture
extracted backend folder
eb43ce0
Raw
History Blame Contribute Delete
113 Bytes
import uvicorn
from app import app
if __name__ == "__main__":
uvicorn.run(app, host="127.0.0.1", port=8000)