s3manager-web/README.md

23 lines
697 B
Markdown
Raw Normal View History

2016-12-18 22:54:21 +01:00
# S3 Manager
2017-03-10 11:15:42 +01:00
A Web GUI to written in Go to manage S3 buckets from any provider.
2016-12-18 22:54:21 +01:00
## Environment Variables
2017-02-22 11:18:20 +01:00
* `S3_ACCESS_KEY_ID`: Required. Your S3 access key ID
* `S3_SECRET_ACCESS_KEY`: Required. Your S3 secret access key
2016-12-18 22:54:21 +01:00
* `S3_ENDPOINT`: Optional. In case you are using a different S3 provider than AWS. Defaults to `s3.amazonaws.com`
* `V2_SIGNING`: Optional. In case your S3 provider still uses V2 Signing, set this to `true`
2017-02-22 11:18:20 +01:00
## Run locally
1. Set all environment variables
2017-03-30 22:56:25 +02:00
1. Run `go build`
2017-02-22 11:18:20 +01:00
1. Run the binary and visit <http://localhost:8080>
2017-03-30 22:56:25 +02:00
## Push to Cloud Foundry
1. Set environment variables in `manifest.yml`
2017-03-30 22:57:33 +02:00
1. Set hostname that isn't taken yet in `manifest.yml`
2017-03-30 22:56:25 +02:00
1. Run `cf push`