Skip to content

Commit

Permalink
bump and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi committed Jan 9, 2021
1 parent c753875 commit b9fa95d
Show file tree
Hide file tree
Showing 4 changed files with 346 additions and 42 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.15

- name: Check out source code
uses: actions/checkout@v2
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ The available options and help information can be displayed with:
docker run --rm aws-s3-reverse-proxy --help
```

# Build
## Build
All build dependencies and steps are contained in the `Dockerfile`:
```
docker build -t aws-s3-reverse-proxy .
```

# Run
## Run

## Server Examples
### Server Examples
```
$ docker run --rm -ti \
-p 8099 \
Expand All @@ -94,25 +94,25 @@ Or just run the binary the old-fashioned way:
./aws-s3-reverse-proxy --help
```

## Client Examples
### Client Examples

Client with the [official awscli](https://aws.amazon.com/cli/):
```
$ aws s3 --endpoint-url http://my.host.example.com:8099 ls s3://my-bucket/
```

# Contributing
## Contributing

`aws-s3-reverse-proxy` welcomes contributions from anyone! Unlike many other
projects we are happy to accept cosmetic contributions and small contributions,
in addition to large feature requests and changes.

# License
## License

`aws-s3-reverse-proxy` is made available under the MIT License. For more
details, see the `LICENSE` file in the repository.

# Authors
## Authors

``aws-s3-reverse-proxy`` was created by Thomas Kriechbaumer, and is maintained
by the community.
`aws-s3-reverse-proxy` was created by Thomas Kriechbaumer, and is maintained
by the community.
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/Kriechi/aws-s3-reverse-proxy

require (
github.com/aws/aws-sdk-go v1.31.4
github.com/prometheus/client_golang v1.6.0
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/testify v1.5.1
github.com/aws/aws-sdk-go v1.36.23
github.com/prometheus/client_golang v1.9.0
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/testify v1.6.1
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)

go 1.14
go 1.15
Loading

0 comments on commit b9fa95d

Please sign in to comment.