getting-started.rst 540 B

1234567891011121314
  1. Getting started
  2. ===============
  3. This is where you describe how to get set up on a clean install
  4. Syncing data to S3
  5. ^^^^^^^^^^^^^^^^^^
  6. * `make sync_data_to_s3` will use `aws s3 sync` to recursively sync files in `data/` up to `s3://{{ cookiecutter.s3_bucket }}/data/`.
  7. * `make sync_data_from_s3` will use `aws s3 sync` to recursively sync files from `s3://{{ cookiecutter.s3_bucket }}/data/` to `data/`.
  8. * `make sync_data_to_minio` will use `rclone --size-only sync {{ cookiecutter.minio }}/data/ data/ --stats-one-line -P --stats 2s`