{"id":49542824,"url":"https://github.com/kakra/ferry","last_synced_at":"2026-05-02T16:01:38.358Z","repository":{"id":355211080,"uuid":"1227209208","full_name":"kakra/ferry","owner":"kakra","description":"Self-hosted, single-binary file sharing with automatic deduplication, resumable TUS uploads, and a modern HTMX interface. ⛴\"","archived":false,"fork":false,"pushed_at":"2026-05-02T11:50:34.000Z","size":1376,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-02T13:28:27.739Z","etag":null,"topics":["cas","deduplication","file-exchange","file-sharing","golang","htmx","on-premise","privacy-focused","resumable-uploads","self-hosted","single-binary","sqlite"],"latest_commit_sha":null,"homepage":"https://kakra.github.io/ferry/","language":"Go","has_issues":true,"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/kakra.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":"docs/ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-02T11:11:31.000Z","updated_at":"2026-05-02T11:50:37.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kakra/ferry","commit_stats":null,"previous_names":["kakra/ferry"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/kakra/ferry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakra%2Fferry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakra%2Fferry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakra%2Fferry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakra%2Fferry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kakra","download_url":"https://codeload.github.com/kakra/ferry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakra%2Fferry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32540120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T12:25:33.646Z","status":"ssl_error","status_checked_at":"2026-05-02T12:24:51.733Z","response_time":132,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cas","deduplication","file-exchange","file-sharing","golang","htmx","on-premise","privacy-focused","resumable-uploads","self-hosted","single-binary","sqlite"],"created_at":"2026-05-02T16:01:09.539Z","updated_at":"2026-05-02T16:01:38.349Z","avatar_url":"https://github.com/kakra.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ferry ⛴️\n\n**ferry** is a self-hosted, single-binary file-sharing solution designed for simple and secure temporary file exchange. It features Content-Addressable Storage (CAS) for automatic deduplication and a modern web interface.\n\n![ferry Administration Teaser](docs/assets/screenshot_readme_teaser_en.png)\n\n## ✨ Key Features\n- 🚀 **Single Binary:** Go + SQLite. Zero external dependencies like Redis or S3.\n- 📦 **Deduplication:** Automatic CAS-based deduplication saves disk space transparently.\n- 📥 **Resumable Uploads:** Powered by the TUS protocol for reliable transfers.\n- 🧪 **Dynamic UI:** Smooth, reload-free experience powered by HTMX and TUS.\n- 🛡️ **Secure by Design:** Argon2id password protection, session hardening, and rate limiting.\n- 🧹 **Automated Maintenance:** Built-in garbage collector (Mark-and-Sweep) for old shares and temporary files.\n- 📱 **Responsive UI:** Clean, mobile-friendly dashboard and guest views.\n\n### 🖼️ UI Gallery\n| Admin Dashboard | System Status \u0026 Logs |\n|:---:|:---:|\n| ![Admin Dashboard](docs/assets/screenshot_dashboard_final_en.png) | ![System Status](docs/assets/screenshot_status_en.png) |\n\n| Guest View (Download/Upload) |\n|:---:|\n| ![Guest View](docs/assets/screenshot_guest_en.png) |\n\n\n## 🚀 Quick Start (Docker)\n1. **Prepare configuration:**\n   ```bash\n   cp config.example.yaml config.yaml\n   docker compose run --rm ferry ./ferry init-config\n   # Then adjust config.yaml, especially server.public_url.\n   ```\n2. **Launch with Docker Compose:**\n   ```bash\n   docker compose up -d --build\n   ```\n3. **Setup:** Access your instance and follow the one-time `/setup` flow to create your admin account.\n\n## 📖 Documentation\n- [**Documentation Site**](docs/index.md) - Entry point for the published docs site.\n- [**Operations Guide**](docs/OPERATIONS.md) - Deployment, Backup, and Recovery.\n- [**Architecture**](docs/ARCHITECTURE.md) - Data model, CAS internals, and security design.\n- [**Changelog**](CHANGELOG.md) - Release notes and compatibility-relevant changes.\n- [**Release Checklist**](docs/RELEASE_CHECKLIST.md) - Quality gates for production readiness.\n- [**Roadmap**](docs/ROADMAP.md) - Future plans (LDAP, Quotas, etc.).\n\n## 🛠️ Development \u0026 Contributing\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n```bash\n# Run tests\ngo test ./...\n# Build locally\ngo build ./cmd/ferry\n```\n\n## 🔐 Security \u0026 Disclaimer\nFerry is a temporary file transfer tool, not a permanent file vault. Always run Ferry behind an HTTPS reverse proxy for production use. See [OPERATIONS.md](docs/OPERATIONS.md) for security best practices.\n\nPlease do not report critical security vulnerabilities through the public issue tracker. Send critical security reports to **kai@kaishome.de**; see [SECURITY.md](SECURITY.md).\n\n---\n*Powered by Go, SQLite, and ⛴️*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkakra%2Fferry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkakra%2Fferry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkakra%2Fferry/lists"}