Allanatrix's picture
Upload 50 files
ef4c8c3 verified
raw
history blame contribute delete
284 Bytes
import uvicorn
import os
if __name__ == "__main__":
os.makedirs("tmp", exist_ok=True)
print("Starting FastAPI backend at http://localhost:8000 ...")
uvicorn.run(
"Tokenization.app:fastapi_app",
host="0.0.0.0",
port=8000,
reload=True
)