diff --git a/api.py b/api.py index d51dde9..dd837e1 100644 --- a/api.py +++ b/api.py @@ -194,6 +194,6 @@ async def log_request_data(request, call_next): uvicorn.run( "main:app", # This refers to the FastAPI app created earlier host="0.0.0.0", # Bind to all available interfaces - port=8080, # Port to run the app + port=8000, # Port to run the app reload=True # Enable auto-reloading for development )