From c15fa3e7685f56d6f0ad749efc6a26f452591236 Mon Sep 17 00:00:00 2001 From: Graham Neubig Date: Mon, 1 Apr 2024 23:06:53 -0400 Subject: [PATCH] Add a host command to the makefile (#534) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 90774a4edc..ffa31e6bc9 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ start-frontend: run: @echo "Running the app..." @mkdir -p logs - @pipenv run nohup uvicorn opendevin.server.listen:app --port $(BACKEND_PORT) > logs/backend_$(shell date +'%Y%m%d_%H%M%S').log 2>&1 & + @pipenv run nohup uvicorn opendevin.server.listen:app --port $(BACKEND_PORT) --host "::" > logs/backend_$(shell date +'%Y%m%d_%H%M%S').log 2>&1 & @cd frontend && npm run start -- --port $(FRONTEND_PORT) # Setup config.toml