File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1717 $(shell cp .env-example .env)
1818endif
1919
20- .PHONY : analyze pre-commit init lint clean test build release
20+ .PHONY : analyze pre-commit init lint tear-down test build release
2121
2222# Default target executed when no arguments are given to make.
2323all : help
@@ -40,11 +40,11 @@ pre-commit:
4040# create python virtual environments for prod
4141# ---------------------------------------------------------
4242init :
43- make clean
43+ make tear-down
4444 $(PYTHON ) -m venv venv && \
4545 $(ACTIVATE_VENV ) && \
4646 $(PIP ) install --upgrade pip && \
47- $(PIP ) install -r requirements/prod .txt && \
47+ $(PIP ) install -r requirements/base .txt && \
4848 deactivate
4949
5050# ---------------------------------------------------------
@@ -55,7 +55,6 @@ init-dev:
5555 npm install && \
5656 $(ACTIVATE_VENV ) && \
5757 $(PIP ) install -r requirements/local.txt && \
58- deactivate && \
5958 pre-commit install
6059
6160test :
You can’t perform that action at this time.
0 commit comments