Update README.md

This commit is contained in:
JT Olio 2018-07-31 11:13:32 -06:00 committed by GitHub
parent 57704674a7
commit 55e76d8b40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,9 +78,26 @@ You can execute only a single test package. For example: `go test storj.io/storj
### Start the network
```bash
go install -v storj.io/storj/cmd/captplanet
captplanet setup
captplanet run
$ go install -v storj.io/storj/cmd/captplanet
$ captplanet setup
$ captplanet run
```
### Configure AWS
```bash
$ aws configure
AWS Access Key ID [None]: insecure-dev-access-key
AWS Secret Access Key [None]: insecure-dev-secret-key
Default region name [None]: us-east-1
Default output format [None]:
$ aws configure set default.s3.multipart_threshold 1TB # until we support multipart
```
### Do an upload
```bash
$ aws s3 --endpoint=http://localhost:7777/ cp large-file s3://bucket/large-file
```
## Support