{"id":13581789,"url":"https://github.com/jessfraz/s3server","last_synced_at":"2025-04-04T18:10:20.514Z","repository":{"id":81850332,"uuid":"43672966","full_name":"jessfraz/s3server","owner":"jessfraz","description":"Server to index \u0026 view files in a s3 or Google Cloud Storage bucket.","archived":false,"fork":false,"pushed_at":"2023-02-25T00:56:17.000Z","size":29309,"stargazers_count":241,"open_issues_count":3,"forks_count":24,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-28T17:11:34.574Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gifs.jessfraz.com","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jessfraz.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}},"created_at":"2015-10-05T08:30:02.000Z","updated_at":"2024-11-07T12:42:56.000Z","dependencies_parsed_at":"2024-01-14T17:16:24.662Z","dependency_job_id":null,"html_url":"https://github.com/jessfraz/s3server","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessfraz%2Fs3server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessfraz%2Fs3server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessfraz%2Fs3server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessfraz%2Fs3server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jessfraz","download_url":"https://codeload.github.com/jessfraz/s3server/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226215,"owners_count":20904465,"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":[],"created_at":"2024-08-01T15:02:14.649Z","updated_at":"2025-04-04T18:10:20.491Z","avatar_url":"https://github.com/jessfraz.png","language":"Go","readme":"# s3server\n\n[![make-all](https://github.com/jessfraz/s3server/workflows/make%20all/badge.svg)](https://github.com/jessfraz/s3server/actions?query=workflow%3A%22make+all%22)\n[![make-image](https://github.com/jessfraz/s3server/workflows/make%20image/badge.svg)](https://github.com/jessfraz/s3server/actions?query=workflow%3A%22make+image%22)\n[![GoDoc](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge)](https://godoc.org/github.com/jessfraz/s3server)\n\nStatic server for s3 or gcs files.\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n**Table of Contents**\n\n- [Installation](#installation)\n    - [Binaries](#binaries)\n    - [Via Go](#via-go)\n- [Usage](#usage)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n\n## Installation\n\n#### Binaries\n\nFor installation instructions from binaries please visit the [Releases Page](https://github.com/jessfraz/s3server/releases).\n\n#### Via Go\n\n```console\n$ go get github.com/jessfraz/s3server\n```\n\n## Usage\n\n```console\n$ s3server -h\ns3server -  Server to index \u0026 view files in a s3 or Google Cloud Storage bucket.\n\nUsage: s3server \u003ccommand\u003e\n\nFlags:\n\n  --bucket    bucket path from which to serve files (default: \u003cnone\u003e)\n  --cert      path to ssl certificate (default: \u003cnone\u003e)\n  -d          enable debug logging (default: false)\n  --interval  interval to generate new index.html's at (default: 5m0s)\n  --key       path to ssl key (default: \u003cnone\u003e)\n  -p          port for server to run on (default: 8080)\n  --provider  cloud provider (ex. s3, gcs) (default: s3)\n  --s3key     s3 access key (default: \u003cnone\u003e)\n  --s3region  aws region for the bucket (default: us-west-2)\n  --s3secret  s3 access secret (default: \u003cnone\u003e)\n\nCommands:\n\n  version  Show the version information.\n```\n\n**run with the docker image**\n\n```console\n# On AWS S3\n$ docker run -d \\\n    --restart always \\\n    -e AWS_ACCESS_KEY_ID \\\n    -e AWS_SECRET_ACCESS_KEY \\\n    -p 8080:8080 \\\n    --name s3server \\\n    --tmpfs /tmp \\\n    r.j3ss.co/s3server -bucket s3://hugthief/gifs\n\n# On Google Cloud Storage\n$ docker run --restart always -d \\\n    --name gifs \\\n    -p 8080:8080 \\\n    -v ~/configs/path/config.json:/creds.json:ro \\\n    -e GOOGLE_APPLICATION_CREDENTIALS=/creds.json \\\n    --tmpfs /tmp \\\n    r.j3ss.co/s3server -provider gcs -bucket gcs://misc.j3ss.co/gifs\n```\n\n![screenshot](screenshot.png)\n","funding_links":[],"categories":["Go","Software","HarmonyOS","others","File Sharing and Synchronization"],"sub_categories":["File Transfer - Web-based File Managers","Windows Manager","E-commerce"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjessfraz%2Fs3server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjessfraz%2Fs3server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjessfraz%2Fs3server/lists"}