From 610e40aecdd75212249b75f0a23b09f4caa25e79 Mon Sep 17 00:00:00 2001 From: Hemna Date: Wed, 15 Dec 2021 10:45:53 -0500 Subject: [PATCH] Renamed virtualenv dir to .aprsd-venv This helps with shell prompts showing the name of the venv. When you have multiple venv environments on your system, naming then helps to identify which one you are actively using. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 1d934f6..ecaa497 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,11 @@ REQUIREMENTS_TXT ?= requirements.txt dev-requirements.txt +WORKDIR?=. +VENVDIR ?= $(WORKDIR)/.aprsd-venv + .DEFAULT_GOAL := help .PHONY: dev docs server test + include Makefile.venv Makefile.venv: curl \