We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d287241 commit 83840edCopy full SHA for 83840ed
{{cookiecutter.project_slug}}/.env.example
@@ -24,3 +24,8 @@ EMAILS_FROM_EMAIL="[email protected]"
24
# Docker compose
25
COMPOSE_FILE=docker-compose.yml
26
COMPOSE_REMOVE_ORPHANS=true
27
+
28
+# Taskfile Env Precedence
29
+# * Manipulate venv path
30
+# * https://taskfile.dev/docs/experiments/env-precedence
31
+TASK_X_ENV_PRECEDENCE=1
{{cookiecutter.project_slug}}/taskfile.yml
@@ -8,8 +8,8 @@ shopt: ['globstar']
8
dotenv: ['.env']
9
10
env:
11
- TLD: "{{.ROOT_DIR}}"
12
- VENV_DIR: ".venv"
+ VENV_DIR: "{{.ROOT_DIR}}/.venv"
+ PATH: "{{.VENV_DIR}}/bin:{{.PATH}}"
13
14
vars:
15
0 commit comments