- TypeScript 53.3%
- Go 27%
- HTML 13.5%
- SCSS 4.3%
- JavaScript 1.6%
- Other 0.3%
| .github/workflows | ||
| _docs | ||
| cmd/storm | ||
| docker-compose | ||
| frontend | ||
| .dockerignore | ||
| .gitignore | ||
| api.go | ||
| Dockerfile | ||
| error.go | ||
| go.mod | ||
| go.sum | ||
| http.go | ||
| LICENSE | ||
| logo.svgz | ||
| methods.go | ||
| methods_labels.go | ||
| methods_plugins.go | ||
| pool.go | ||
| README.md | ||
| request.go | ||
| response.go | ||
| static.go | ||
You probably have a whole media stack for managing your legitimate media files remotely.
Sometimes though, downloads can get stuck or you want to add something manually to your Torrent client. Deluge's WebUI whilst powerful is pretty much useless on mobile devices.
Introducing Storm
A slick remote interface for Deluge that fully supports mobile devices (including as a home-screen app)
Usage
docker run --name storm \
--network deluge \
-p 8221:8221 \
-e DELUGE_RPC_HOSTNAME=deluge \
-e DELUGE_RPC_USERNAME=username \
-e DELUGE_RPC_PASSWORD=password \
ghcr.io/relvacode/storm
The recommended way to run Storm is with a Docker image.
You'll need a Deluge container running with a valid auth configuration. Storm needs a way to contact the Deluge RPC daemon so it's best that you create a Docker network and attach the Storm container to that network.
Once that's setup you'll need to configure Deluge to allow remote RPC connections:
Open up core.conf in your Deluge configuration folder and set
"allow_remote": true
Then you can use the following environment variables to configure Storm
| Environment | Description |
|---|---|
DELUGE_RPC_HOSTNAME |
The Deluge RPC hostname |
DELUGE_RPC_USERNAME |
The username from Deluge auth |
DELUGE_RPC_PASSWORD |
The password from Deluge auth |
DELUGE_RPC_VERSION |
v1 or v2 depending on your Deluge version |
STORM_API_KEY |
Enable authentication for the Storm API |
STORM_BASE_PATH |
Set the base URL path. Defaults to / |
Security
By default, Storm does not authenticate requests made to the API. When serving Storm over the public internet you should ensure access to your Deluge daemon is properly secured.
Storm comes with a simple built-in authentication mechanism which can be enabled with the environment variable STORM_API_KEY or the command-line option --api-key.
Set this to a reasonably secure password. Any requests made to Storm must now provide the API key in the request.
You should also seriously consider the use of HTTPS over the internet, with services like LetsEncrypt it's relatively easy to get a valid SSL certificate for free.