Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
add torrent Watch feature desc
Browse files Browse the repository at this point in the history
  • Loading branch information
boypt committed Aug 7, 2019
1 parent 5a45c31 commit 24cf99e
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

**Simple Torrent** is a a self-hosted remote torrent client, written in Go (golang). You start torrents remotely, which are downloaded as sets of files on the local disk of the server, which are then retrievable or streamable via HTTP.

### New Features
### Features

This fork adds new features to the original version by `jpillora`.

* Run extrenal program on task/file completed: `DoneCmd`
* Stops task when seeding ratio reached: `SeedRatio`
* Download/Upload Rate limit: `UploadRate`/`DownloadRate`
* Detailed transfer stats in web UI.
* Torrent file Watcher (Automaticly add task when `.torrent` files put in `WatchDirectory`)

And some development improvement
* Go modules introduced and compatiable with go 1.12
Expand Down Expand Up @@ -45,7 +46,7 @@ NOTE: [MUST read wiki page for detailed intructions: Auth And Security](https://
[dockerhub]: https://hub.docker.com/r/boypt/cloud-torrent/

``` sh
$ docker run -d -p 3000:3000 -v /path/to/my/downloads:/downloads boypt/cloud-torrent
$ docker run -d -p 3000:3000 -v /path/to/my/downloads:/downloads -v /path/to/my/torrents:/torrents boypt/cloud-torrent
```

**Source**
Expand Down Expand Up @@ -94,14 +95,15 @@ A sample json will be generated on first run of simple-torrent.
{
"AutoStart": true,
"DisableEncryption": false,
"DownloadDirectory": "/home/ubuntu/Download/cloud-torrent/downloads",
"DownloadDirectory": "/home/ubuntu/cloud-torrent/downloads",
"WatchDirectory": "/home/ubuntu/cloud-torrent/torrents",
"EnableUpload": true,
"EnableSeeding": false,
"EnableSeeding": true,
"IncomingPort": 50007,
"SeedRatio": 1.0,
"DoneCmd": "",
"SeedRatio": 1,
"UploadRate": "High",
"DownloadRate": "High",
"DoneCmd": ""
"DownloadRate": ""
}
```

Expand Down

0 comments on commit 24cf99e

Please sign in to comment.