A way to track your Flood upload history form day to day.
- Create a
config.json
file with the following info, adapting each line to fit your local setup
{
"flood-url": "http://localhost:3001/api",
"flood-username": "Your Flood Username",
"flood-password": "Your Flood Password"
}
- Create a
docker-compose.yml
file:
version: '3.5'
services:
flood-stats:
image: saadbruno/flood-stats:latest
volumes:
- ./config.json:/usr/src/app/config.json:ro
- ./torrent-data.sqlite:/usr/src/app/torrent-data.sqlite
ports:
- 3000:3000
- run
docker-compose up -d
- Clone this repo
- Copy
config.json.template
toconfig.json
and adapt it to your local setup - run
node .