Skip to content

Commit 05c2feb

Browse files
committed
chore: lint
1 parent e203ae7 commit 05c2feb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ else
1717
$(shell cp .env-example .env)
1818
endif
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.
2323
all: help
@@ -40,11 +40,11 @@ pre-commit:
4040
# create python virtual environments for prod
4141
# ---------------------------------------------------------
4242
init:
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

6160
test:

0 commit comments

Comments
 (0)