Email template management service for Reloop — create, version, and collaborate on templates.
2.4K
The Template Service manages the full lifecycle of email templates in the Reloop platform. It supports creating and versioning templates, real-time collaborative editing via WebSocket rooms, and rendering templates with dynamic variable substitution.
Built on Bun + Elysia, backed by PostgreSQL and Redis.
x-api-key header/api/template/openapi| Resource | Link |
|---|---|
| 📚 Documentation | reloop.sh/docs/setup/backend/template |
| 🌐 Production API | api.reloop.sh/api/template |
| 📜 OpenAPI Spec | reloop.sh/api/template/openapi |
| 🐙 Source Code | github.com/reloop-labs/reloop |
| 💬 Discord | discord.gg/reloop |
| 🐦 Twitter / X | @reloophq |
| 🆘 Support | reloop.sh/support |
docker pull reloopsh/be-template:latest
docker run -d \
-p 8019:8019 \
-e PG_URL=postgresql://user:password@host:5432/reloop \
-e REDIS_URL=redis://:password@host:6379 \
-e NATS_URL=nats://host:4222 \
-e BASE_URL=https://your-domain.com \
reloopsh/be-template:latest
The service will be available at http://localhost:8019/api/template.
| Variable | Default | Description |
|---|---|---|
PORT | 8019 | Port the server listens on |
PG_URL | — | PostgreSQL connection string |
REDIS_URL | — | Redis connection string |
NATS_URL | — | NATS messaging server URL |
BASE_URL | — | Public base URL of the platform |
NODE_ENV | production | Runtime environment |
This image is one of several microservices that make up the Reloop backend. See the full list at hub.docker.com/u/reloopsh.
Content type
Image
Digest
sha256:b2ae4dd2e…
Size
247.7 MB
Last updated
7 days ago
docker pull reloopsh/be-template