Add a host command to the makefile (#534)

This commit is contained in:
Graham Neubig
2024-04-01 23:06:53 -04:00
committed by GitHub
parent a9f469f0e7
commit c15fa3e768

View File

@@ -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