Soutrik commited on
Commit
cbce8d4
·
1 Parent(s): ff35886

dvc-s3 working

Browse files
Files changed (2) hide show
  1. .dvc/config +2 -1
  2. basic_setup.md +3 -2
.dvc/config CHANGED
@@ -4,4 +4,5 @@
4
  ['remote "local_remote"']
5
  url = /tmp/dvclocalstore
6
  ['remote "aws_remote"']
7
- url = s3://mybucket/data
 
 
4
  ['remote "local_remote"']
5
  url = /tmp/dvclocalstore
6
  ['remote "aws_remote"']
7
+ url = s3://deep-bucket-s3/data
8
+ region = ap-south-1
basic_setup.md CHANGED
@@ -338,11 +338,12 @@ dvc push -r azblob
338
  Next we will add S3 as a remote
339
 
340
  ```bash
341
- dvc remote add --default aws_remote s3://mybucket
342
  dvc remote modify --local aws_remote access_key_id <>
343
  dvc remote modify --local aws_remote secret_access_key <>
344
  dvc remote modify --local aws_remote region ap-south-1
345
- dvc push -r aws_remote
 
346
  ```
347
 
348
  9. ## __HYDRA SETUP__
 
338
  Next we will add S3 as a remote
339
 
340
  ```bash
341
+ dvc remote add --default aws_remote s3://deep-bucket-s3/data
342
  dvc remote modify --local aws_remote access_key_id <>
343
  dvc remote modify --local aws_remote secret_access_key <>
344
  dvc remote modify --local aws_remote region ap-south-1
345
+ dvc remote modify aws_remote region ap-south-1
346
+ dvc push -r aws_remote -v
347
  ```
348
 
349
  9. ## __HYDRA SETUP__