Skip to content

Commit

Permalink
Copy .env.dev file to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack authored Aug 18, 2023
1 parent 71d106a commit 5ac4af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit 5ac4af4

Please sign in to comment.