A lightweight proxy service that forwards Root platform events to Redis for distributed processing.
- Listens to Root app events
- Forwards events to Redis pub/sub
- Node.js 22 or higher
- Redis instance
This is mostly used for development purposes. For production, you should actually publish to Root cloud.
You will need to mount your root-manifest.json file and set the REDIS_URL and DEV_TOKEN environment variables:
docker run \
-v /path/to/your/root-manifest.json:/app/root-manifest.json \
-e REDIS_URL=redis://your-redis:6379 \
-e DEV_TOKEN=your-dev-token \
ghcr.io/zaida04/root-proxy:latestMIT