send2streamer/docker-compose.yml
vrubelroman 9c91966730
Some checks failed
CI/CD Pipeline / build-and-deploy (push) Failing after 2s
Multi-tenant platform: per-streamer overlay/sender links + CI/CD
Streamers log in with Google on a new landing page and get a
dashboard with two auto-generated, permanent links: one for their
OBS/StreamLabs Browser Source, one to share with viewers. Messages
are now scoped to the right streamer via Socket.IO rooms instead of
broadcasting globally. Streamer records and tokens are persisted in
SQLite (node:sqlite) so links survive restarts/redeploys.

Also adds a Forgejo Actions pipeline mirroring t2sTelegramBot's:
build, smoke-test, push to the local registry, then deploy to the
prod host over SSH.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-01 15:53:07 +00:00

11 lines
238 B
YAML

services:
app:
build: .
image: 192.168.8.174:3000/vrubel/send2streamer:latest
container_name: send2streamer
ports:
- "3000:3000"
env_file: .env
volumes:
- ./data:/app/data
restart: unless-stopped