Skip to content

Commit

Permalink
Fix typo in app.py documentation (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala authored May 29, 2024
1 parent b701e52 commit ee02ea1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hsds/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@
- with POSIX-based storage and config settings and password file:
hsds --root_dir ~/hsdata --password-file ./admin/config/passwd.txt \
hsds --root_dir ~/hsdata --password_file ./admin/config/passwd.txt \
--config_dir ./admin/config
- with minio data storage:
hsds --s3-gateway http://localhost:6007 --access-key-id demo:demo
--secret-access-key DEMO_PASS --password-file ./admin/config/passwd.txt
--secret-access-key DEMO_PASS --password_file ./admin/config/passwd.txt
- with AWS S3 storage and a bucket in the us-west-2 region:
hsds --s3-gateway http://s3.us-west-2.amazonaws.com --access-key-id ${AWS_ACCESS_KEY_ID} \
--secret-access-key ${AWS_SECRET_ACCESS_KEY} --password-file ./admin/config/passwd.txt
--secret-access-key ${AWS_SECRET_ACCESS_KEY} --password_file ./admin/config/passwd.txt
"""

Expand Down

0 comments on commit ee02ea1

Please sign in to comment.