Skip to content

Commit

Permalink
Merge pull request #66 from RedHatGov/issue-58
Browse files Browse the repository at this point in the history
Cleaner output for ENV variables to copy
  • Loading branch information
theckang authored Nov 13, 2021
2 parents c197307 + 8b40270 commit f2f5b91
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions workshop/content/lab2.3_ml_bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,13 @@ Set your environment variables.

> Switch to your workshop terminal and run:
```
echo export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID
echo export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY
echo export ENDPOINT_URL=$ENDPOINT_URL
echo export BUCKET_NAME=$BUCKET_NAME
echo export MODEL_FILE_NAME=model.pkl
```execute
echo export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID >> export.txt
echo export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY >> export.txt
echo export ENDPOINT_URL=$ENDPOINT_URL >> export.txt
echo export BUCKET_NAME=$BUCKET_NAME >> export.txt
echo export MODEL_FILE_NAME=model.pkl >> export.txt
cat export.txt
```

**Copy** this output to your clipboard.
Expand Down

0 comments on commit f2f5b91

Please sign in to comment.