Fix backend port

This commit is contained in:
dvirlabs 2025-12-17 07:50:18 +02:00
parent ddeee8aeaf
commit 557535e987

View File

@ -55,6 +55,6 @@ if __name__ == "__main__":
uvicorn.run(
"main:app",
host="0.0.0.0",
port=8001,
port=8000,
reload=True
)