Created this readme and initialised both git and dvc
created two csv files in local storage to act as data source
Created S3 bucket https://s3.console.aws.amazon.com/s3/buckets/dvctask?region=us-west-1&tab=objects
s3://dvctask/sample/ https://dvctask.s3.us-west-1.amazonaws.com/sample/
dvc remote add -d myremote s3://dvctask/sample/
adds entry in .dvc/config
[core]
remote = myremote
['remote "myremote"']
url = s3://dvctask/sample/
no need to add creds it will come later with push
google drive
dvc remote add -d myremote gdrive://1zSABJlHwuYvTCUvHL1wQQs4w-Mi3iMdI/xxx
copy the data to this directory
mkdir data cp * data/
dvc add data/
git add .gitignore data.dvc
git commit
dvc push