Skip to content

Commit

Permalink
Update Makefile (All-Hands-AI#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbren committed Apr 2, 2024
1 parent 324a00f commit c3f95f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ build:
@echo "Pulling Docker image..."
@docker pull $(DOCKER_IMAGE)
@echo "Installing Python dependencies..."
@pip install pipenv
@pipenv install -v
@python -m pip install pipenv
@python -m pipenv install -v
@echo "Setting up frontend environment..."
@cd frontend && npm install

# Start backend
start-backend:
@echo "Starting backend..."
@pipenv run uvicorn opendevin.server.listen:app --port $(BACKEND_PORT)
@python -m pipenv run uvicorn opendevin.server.listen:app --port $(BACKEND_PORT)

# Start frontend
start-frontend:
Expand Down

0 comments on commit c3f95f0

Please sign in to comment.