- Open RedTrack.
- Add your backend URL, username, and password.
- Select your server entry from the list.
Hosted web app: https://redstonecloud.github.io/RedTrack
If you use the hosted web app, your backend URL must use HTTPS (not HTTP). Browsers block mixed-content requests from an HTTPS page to an HTTP API.
- Add new server: create a new saved backend profile.
- Support: use the Discord icon button to open the community support server.
- View live player metrics and history.
- Use range controls (Previous 3h, Next 3h, Now) to navigate data windows.
If RedTrack cannot reach the backend, a Connection lost screen appears instead of leaving a broken view.
- The app keeps retrying automatically in the background.
- You can also press Retry now.
- Once the backend is reachable again, the dashboard view returns automatically.
This guide uses Ubuntu/Debian-style commands.
sudo apt update
sudo apt install -y nodejs npm mongodbIf your distro uses
mongodfrom a separate package/repo, install MongoDB using your distro’s official docs.
sudo systemctl enable --now mongod
sudo systemctl status mongodcd /path/to/RedTrack/backend
npm ciIn backend/.env:
mongodb_uri=mongodb://127.0.0.1:27017
ping_rate=10000
backend_port=3001
backend_https_enabled=false
backend_https_key_path=/path/to/privkey.pem
backend_https_cert_path=/path/to/fullchain.pemOptional HTTPS settings:
backend_https_enabled=trueswitches the backend to HTTPS mode.backend_https_key_pathandbackend_https_cert_pathmust point to readable PEM files that always exist when HTTPS is enabled.
Development mode:
npm run devProduction-style run:
npm run build
npm startOn first boot, RedTrack creates a default admin user:
- Username:
admin - Password:
changeme
Log in and change the password immediately.
- Install Node.js LTS from nodejs.org
- Install MongoDB Community Server from mongodb.com
After install, ensure the MongoDB Windows service is running.
In PowerShell (as Administrator):
Get-Service MongoDB
Start-Service MongoDBcd C:\path\to\RedTrack\backend
npm ciCreate backend\.env with:
mongodb_uri=mongodb://127.0.0.1:27017
ping_rate=10000
backend_port=3001
backend_https_enabled=false
backend_https_key_path=/path/to/privkey.pem
backend_https_cert_path=/path/to/fullchain.pemDevelopment mode:
npm run devProduction-style run:
npm run build
npm startUse backend URL:
https://localhost:3001(same machine, with trusted/local cert setup)https://<your-server-ip>:3001(LAN/remote client, with valid cert)
Then log in with default credentials (admin / changeme) and change the password.