Online version: https://geartrack.pt
Geartrack 2.0 is under development, this version will no longer be mantained. Use the online version which will always be updated :)
This is an Express.js app.
- Node
- Environment variables:
- (optional) GEARTRACK_PROXYS:
ip,ip,ip
- Some trackers may block your machine ip, use different proxies to get the data. - (optional) GEARTRACK_BUGSNAG:
apikey
- When an exception occurs on production you are notified by email.
- (optional) GEARTRACK_PROXYS:
- clone this repo to a folder
npm install
npm start
- will runnode bin/wwww
npm test
- Runs a local server and watches for file changes to reload the page.
To build and run locally:
docker build -t geartrack-website .
docker run -d -p 80:3000 geartrack-website
Using the public image on docker hub:
docker run -d -p 80:3000 hdnpt/geartrack-website
- the latest image will be downloaded and the geartrack will be available athttps://localhost
(to stop usedocker stop [containerid]
)
Passing environment variables:
docker run -d -p 80:3000 -e "GEARTRACK_BUGSNAG=apikey" hdnpt/geartrack-website
- A better version is under development using .net core and will support notifications and other features!
MIT