Local Development
Running the APIs
cd statux-api
npm install
docker-compose up -d # Start PostgreSQL
npm run start:dev:statuspages # http://localhost:3000
npm run start:dev:alerting # http://localhost:3001
npm run start:dev:synthetics # http://localhost:3002
Running the Web Sites
cd statux-web/landing
python3 -m http.server 8000 # http://localhost:8000
Running the Mobile App
cd statux-app
flutter pub get
flutter run
Running the Relay
cd statux-relay
cp config.example.yaml config.yaml
make build
./bin/statux-relay -config config.yaml
See the main CLAUDE.md for complete local development instructions.