Installation
Requirements
- Docker & Docker Compose (recommended)
- Or: Go 1.21+, MySQL 8.0+, ClickHouse 24.1+, Redis 7+
Docker Installation (Recommended)
bash
git clone https://github.com/anthropics/argus-tracker.git
cd argus-tracker
cp configs/config.docker.yaml configs/config.yaml
docker compose up -dThe tracker will be available at:
- Tracker:
http://localhost:8000 - API / Dashboard:
http://localhost:8001
Manual Installation
See System Requirements for detailed prerequisites.
bash
# Build binaries
make build
# Configure
cp configs/config.example.yaml configs/config.yaml
# Edit config.yaml with your database credentials
# Run
./tracker &
./api &
./worker &