Skip to content

Commit

Permalink
feat: uv
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer authored Sep 3, 2024
1 parent 7253d3b commit c51fd85
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,19 @@ documentation:

.PHONY: install ## Install the requirements
install:
pip install -e .
@if [ ! -z "${CI}" ]; then \
uv pip install -e . --system; \
else \
uv pip install -e .; \
fi

.PHONY: develop ## Set up the development environment
develop:
pip install -e .[develop]
@if [ ! -z "${CI}" ]; then \
uv pip install -e ".[develop]" --system; \
else \
uv pip install -e ".[develop]"; \
fi

.PHONY: env_encrypt ## Encrypts the current ./<app>/.env
env_encrypt:
Expand Down

0 comments on commit c51fd85

Please sign in to comment.