fix: Correct shell activation command in Makefile for proper environment setup
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled

This commit is contained in:
William Valentin
2025-07-31 11:20:18 -07:00
parent 00443a540f
commit e5e654a0b3

View File

@@ -147,7 +147,7 @@ attach: ## Open a shell in the container
docker-compose exec -it ${TARGET} /bin/bash
shell: ## Open a shell in the local environment
@echo "Opening a shell in the local environment..."
source .venv/bin/activate.${SHELL} && /bin/${SHELL}
source .venv/bin/activate.${SHELL}; /bin/${SHELL}
requirements: ## Export the requirements to a file
@echo "Exporting requirements to requirements.txt..."
poetry export --without-hashes -f requirements.txt -o requirements.txt