{"id":13561132,"url":"https://github.com/cloudlena/s3manager","last_synced_at":"2025-04-14T08:17:28.096Z","repository":{"id":37589060,"uuid":"76808864","full_name":"cloudlena/s3manager","owner":"cloudlena","description":"A Web GUI for your S3 buckets","archived":false,"fork":false,"pushed_at":"2025-03-26T12:22:44.000Z","size":10022,"stargazers_count":698,"open_issues_count":29,"forks_count":111,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-04-14T08:17:15.595Z","etag":null,"topics":["go","golang","gui","material-design","s3"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudlena.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-12-18T21:53:45.000Z","updated_at":"2025-04-12T13:05:46.000Z","dependencies_parsed_at":"2023-11-15T07:30:22.356Z","dependency_job_id":"f3a8b0ff-d93f-4d60-84be-e386e2636a93","html_url":"https://github.com/cloudlena/s3manager","commit_stats":{"total_commits":217,"total_committers":11,"mean_commits":"19.727272727272727","dds":0.1751152073732719,"last_synced_commit":"9a7c8e446b422f8973b8c461990f39fdafee9c27"},"previous_names":["mastertinner/s3manager","mastertinner/s3-manager"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudlena%2Fs3manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudlena%2Fs3manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudlena%2Fs3manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudlena%2Fs3manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudlena","download_url":"https://codeload.github.com/cloudlena/s3manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248843999,"owners_count":21170499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","gui","material-design","s3"],"created_at":"2024-08-01T13:00:52.813Z","updated_at":"2025-04-14T08:17:28.068Z","avatar_url":"https://github.com/cloudlena.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# S3 Manager\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/cloudlena/s3manager)](https://goreportcard.com/report/github.com/cloudlena/s3manager)\n[![Build Status](https://github.com/cloudlena/s3manager/actions/workflows/main.yml/badge.svg)](https://github.com/cloudlena/s3manager/actions)\n\nA Web GUI written in Go to manage S3 buckets from any provider.\n\n![Screenshot](https://raw.githubusercontent.com/cloudlena/s3manager/main/screenshot.png)\n\n## Features\n\n- List all buckets in your account\n- Create a new bucket\n- List all objects in a bucket\n- Upload new objects to a bucket\n- Download object from a bucket\n- Delete an object in a bucket\n\n## Usage\n\n### Configuration\n\nThe application can be configured with the following environment variables:\n\n- `ENDPOINT`: The endpoint of your S3 server (defaults to `s3.amazonaws.com`)\n- `REGION`: The region of your S3 server (defaults to `\"\"`)\n- `ACCESS_KEY_ID`: Your S3 access key ID (required) (works only if `USE_IAM` is `false`)\n- `SECRET_ACCESS_KEY`: Your S3 secret access key (required) (works only if `USE_IAM` is `false`)\n- `USE_SSL`: Whether your S3 server uses SSL or not (defaults to `true`)\n- `SKIP_SSL_VERIFICATION`: Whether the HTTP client should skip SSL verification (defaults to `false`)\n- `SIGNATURE_TYPE`: The signature type to be used (defaults to `V4`; valid values are `V2, V4, V4Streaming, Anonymous`)\n- `PORT`: The port the app should listen on (defaults to `8080`)\n- `ALLOW_DELETE`: Enable buttons to delete objects (defaults to `true`)\n- `FORCE_DOWNLOAD`: Add response headers for object downloading instead of opening in a new tab (defaults to `true`)\n- `LIST_RECURSIVE`: List all objects in buckets recursively (defaults to `false`)\n- `USE_IAM`: Use IAM role instead of key pair (defaults to `false`)\n- `IAM_ENDPOINT`: Endpoint for IAM role retrieving (Can be blank for AWS)\n- `SSE_TYPE`: Specified server side encryption (defaults blank) Valid values can be `SSE`, `KMS`, `SSE-C` all others values don't enable the SSE\n- `SSE_KEY`: The key needed for SSE method (only for `KMS` and `SSE-C`)\n- `TIMEOUT`: The read and write timeout in seconds (default to `600` - 10 minutes)\n\n### Build and Run Locally\n\n1.  Run `make build`\n1.  Execute the created binary and visit \u003chttp://localhost:8080\u003e\n\n### Run Container image\n\n1. Run `docker run -p 8080:8080 -e 'ACCESS_KEY_ID=XXX' -e 'SECRET_ACCESS_KEY=xxx' cloudlena/s3manager`\n\n### Deploy to Kubernetes\n\nYou can deploy S3 Manager to a Kubernetes cluster using the [Helm chart](https://github.com/sergeyshevch/s3manager-helm).\n\n## Development\n\n### Lint Code\n\n1. Run `make lint`\n\n### Run Tests\n\n1.  Run `make test`\n\n### Build Container Image\n\nThe image is available on [Docker Hub](https://hub.docker.com/r/cloudlena/s3manager/).\n\n1.  Run `make build-image`\n\n### Run Locally for Testing\n\nThere is an example [docker-compose.yml](https://github.com/cloudlena/s3manager/blob/main/docker-compose.yml) file that spins up a S3 service and the S3 Manager. You can try it by issuing the following command:\n\n```shell\n$ docker-compose up\n```\n\n## GitHub Stars\n\n[![GitHub stars over time](https://starchart.cc/cloudlena/s3manager.svg?variant=adaptive)](https://starchart.cc/cloudlena/s3manager)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudlena%2Fs3manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudlena%2Fs3manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudlena%2Fs3manager/lists"}