Update Makefile (#609)

This commit is contained in:
Robert Brennan 2024-04-02 18:36:10 -04:00 committed by GitHub
parent 324a00f477
commit c3f95f049f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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