From 2c4dc1ba62ef5141ceb789494d450f6ba14fe05e Mon Sep 17 00:00:00 2001 From: Beth Cimini Date: Wed, 31 Aug 2022 13:30:22 -0400 Subject: [PATCH] Go back to env variables --- 05-create-profiles.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/05-create-profiles.md b/05-create-profiles.md index 9ea2091..8a637ea 100644 --- a/05-create-profiles.md +++ b/05-create-profiles.md @@ -289,11 +289,11 @@ This needs to happen once per project, not per batch. Skip this step if not using DVC. ``` # Navigate -cd ~/work/projects/${PROJECT_NAME}/workspace/software/ +cd ~/work/projects/${PROJECT_NAME}/workspace/software/${DATA} # Initialize DVC dvc init # Set up remote storage -dvc remote add -d S3storage s3:///projects/${PROJECT_NAME}/workspace/software/_DVC +dvc remote add -d S3storage s3://${BUCKET}/projects/${PROJECT_NAME}/workspace/software/${DATA}_DVC # Commit new files to git git add .dvc/.gitignore .dvc/config git commit -m "Setup DVC"