From 2efdd4be8bdb1508a11800ea3632d15af7417c16 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Sat, 23 Apr 2022 20:17:28 +0200 Subject: [PATCH] makefile changes --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 78a7a6b..b4d6006 100644 --- a/Makefile +++ b/Makefile @@ -14,13 +14,9 @@ up: ## Run project with compose clean: ## Clean Reset project containers with compose docker-compose down -v --remove-orphans -.PHONY: lock -lock: ## Refresh pipfile.lock - pipenv lock --pre - .PHONY: requirements requirements: ## Refresh requirements.txt from pipfile.lock - pipenv lock -r > requirements.txt + pipenv lock -r -d > requirements.txt .PHONY: test test: ## Run project tests