The Tggl Proxy can be run on you own infrastructure to serve as a middle-man between your application and the Tggl API to manage caching and batching.
🔗 Website • 📚 Documentation • 📦 NPM • 📦 Docker • 🎥 Videos
Create a docker-compose.yml
file with the following content:
version: '3.9'
services:
tggl:
image: tggl/tggl-proxy
environment:
TGGL_API_KEY: YOUR_SERVER_API_KEY
ports:
- '3000:3000'
Now simply run:
docker-compose up