{"id":13511648,"url":"https://github.com/boypt/simple-torrent","last_synced_at":"2025-09-27T08:30:32.732Z","repository":{"id":35623221,"uuid":"162096396","full_name":"boypt/simple-torrent","owner":"boypt","description":"☁️ Simple Torrent: a self-hosted remote torrent client (rebranded from Cloud Torrent)","archived":true,"fork":true,"pushed_at":"2024-07-28T06:24:54.000Z","size":23734,"stargazers_count":1004,"open_issues_count":65,"forks_count":314,"subscribers_count":26,"default_branch":"master","last_synced_at":"2024-09-26T22:22:09.347Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"jpillora/cloud-torrent","license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boypt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-12-17T08:12:32.000Z","updated_at":"2024-09-09T06:42:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/boypt/simple-torrent","commit_stats":null,"previous_names":[],"tags_count":68,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boypt%2Fsimple-torrent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boypt%2Fsimple-torrent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boypt%2Fsimple-torrent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boypt%2Fsimple-torrent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boypt","download_url":"https://codeload.github.com/boypt/simple-torrent/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234410471,"owners_count":18828210,"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-01T03:01:03.312Z","updated_at":"2025-09-27T08:30:26.649Z","avatar_url":"https://github.com/boypt.png","language":"Go","funding_links":[],"categories":["Go","Debrid Services"],"sub_categories":["Self-Hosted Cloud Torrent"],"readme":"![screenshot](https://user-images.githubusercontent.com/1033514/64239393-bdbb6480-cf32-11e9-9269-d8d10e7c0dc7.png)\n\n![Build Status](https://github.com/boypt/simple-torrent/workflows/Go/badge.svg) \n\n**SimpleTorrent** is a a self-hosted remote torrent client, written in Go (golang). Started torrents remotely, download sets of files on the local disk of the server, which are then retrievable or streamable via HTTP.\n\nThis project is a re-branded fork of [cloud-torrent](https://github.com/jpillora/cloud-torrent) by `jpillora`.\n\n# Features\n\n* Individual file download control (1.1.3+)\n* Run external program on tasks completion: `DoneCmd`\n* Stops task when seeding ratio reached: `SeedRatio`\n* Download/Upload speed limiter: `UploadRate`/`DownloadRate`\n* Detailed transfer stats in web UI.\n* [Torrent Watcher](https://github.com/boypt/simple-torrent/wiki/Torrent-Watcher)\n* K8s/docker health-check endpoint `/healthz`\n* Extra trackers from external source\n* Protocol Handler to `magnet:`\n* Magnet RSS subscribing supported\n* Flexible config file accepts multiple formats (.json/.yaml/.toml) ([by spf13/Viper](https://github.com/spf13/viper/)) (1.2.0+)\n\nAlso:\n* Single binary\n* Cross platform\n* Embedded torrent search\n* Real-time updates\n* Mobile-friendly\n* Fast [content server](http://golang.org/pkg/net/http/#ServeContent)\n* IPv6 out of the box\n* Updated torrent engine from [anacrolix/torrent](https://github.com/anacrolix/torrent)\n\n# Install\n\n## Binary\n\nSee [the latest release](https://github.com/boypt/cloud-torrent/releases/latest) or use the oneline script to do a quick install on a modern Linux machines.\n\n``` bash\nbash \u003c(wget -qO- https://git.io/simpletorrentqs)\n```\n\nThe script installs a systemd unit (under `scripts/cloud-torrent.service`) as service. Read further intructions: [Auth And Security](https://github.com/boypt/simple-torrent/wiki/AuthSecurity)\n\nIf hope to specify a version, just append the version number to the command.\n\n``` bash\nbash \u003c(wget -qO- https://git.io/simpletorrentqs) 1.3.3\n```\n\n## Docker [![Docker Pulls](https://img.shields.io/docker/pulls/boypt/cloud-torrent.svg)][dockerhub]\n\n[dockerhub]: https://hub.docker.com/r/boypt/cloud-torrent/\n\n``` bash\n$ docker run -d -p 3000:3000 -v /path/to/my/downloads:/downloads -v /path/to/my/torrents:/torrents boypt/cloud-torrent\n```\nWhen running as a container, keep in mind:\n* You need also to expose your torrent incoming port (50007 by default) if you want to seed (`-p 50007:50007`). Also, you'll have to forward the port on your router.\n* Automatic port forwarding on your router via UPnP IGD will not work unless run in `host` mode (`--net=host`).\n\nIt's more practical to run docker-compose, see Wiki Page: [DockerCompose](https://github.com/boypt/simple-torrent/wiki/DockerCompose)\n## Source\n\n**Requirement**\n- Latest [Golang](https://golang.org/dl/) (Go 1.16+)\n\n``` sh\n$ git clone https://github.com/boypt/simple-torrent.git\n$ cd simple-torrent\n$ ./scripts/make_release.sh\n```\n\n# Usage\n\n## Commandline Options\nSee Wiki [Command line Options](https://github.com/boypt/simple-torrent/wiki/Command-line-Options)\n\n## Configuration file\nSee Wiki [Config File](https://github.com/boypt/simple-torrent/wiki/Config-File)\n\n## Use with WEB servers (nginx/caddy)\nSee Wiki [Behind WebServer (reverse proxying)](https://github.com/boypt/simple-torrent/wiki/ReverseProxy)\n\n# Credits \n* Credits to @jpillora for [Cloud Torrent](https://github.com/jpillora/cloud-torrent).\n* Credits to @anacrolix for https://github.com/anacrolix/torrent\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboypt%2Fsimple-torrent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboypt%2Fsimple-torrent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboypt%2Fsimple-torrent/lists"}