fix permissions issue
All checks were successful
Build Docker / deploy (push) Successful in 49s
Build Docker / build (push) Successful in 57s

This commit is contained in:
2026-05-17 19:14:42 +03:00
parent 57c88ab44b
commit ca966f0bc6
3 changed files with 7 additions and 6 deletions

2
run.py
View File

@@ -22,7 +22,7 @@ async def init_admin(user_name: str):
def start(log_level: str):
uvicorn.run(
"server.backend.endpoints.endpoints:api",
host="0.0.0.0",
host="127.0.0.1",
port=settings.PORT,
reload=False,
log_level=log_level,