From 5ac4af415c9d948cdc4201076da3ced716be727d Mon Sep 17 00:00:00 2001 From: Kai Schlamp Date: Fri, 18 Aug 2023 22:32:35 +0200 Subject: [PATCH] Copy .env.dev file to correct location --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index a1107c14..6c01825e 100644 --- a/tasks.py +++ b/tasks.py @@ -284,7 +284,7 @@ def copy_statics(ctx: Context): @task def init_workspace(ctx: Context, type: Literal["codespaces", "gitpod"]): """Initialize workspace for Github Codespaces or Gitpod""" - env_dev_file = f"{compose_dir}/.env.dev" + env_dev_file = f"{project_dir}/.env.dev" copy(f"{project_dir}/example.env", env_dev_file) if type == "codespaces":