diff --git a/backend/__main__.py b/backend/__main__.py index 5dedfa83..fdd9dd6a 100644 --- a/backend/__main__.py +++ b/backend/__main__.py @@ -24,12 +24,12 @@ def main(): print(f"šŸ“ Host: {host}") print(f"šŸ”Œ Port: {port}") print(f"šŸ”„ Reload: {reload}") - print(f"\nšŸ“– API Documentation: http://{host}:{port}/docs") - print(f"šŸ“Š Health Check: http://{host}:{port}/api/health\n") + print(f"\nšŸ“– API Documentation: http://localhost:{port}/docs") + print(f"šŸ“Š Health Check: http://localhost:{port}/api/health\n") # Start uvicorn server uvicorn.run( - "app.main:app", + "backend.app.main:app", # Use full module path host=host, port=port, reload=reload,