an atproto based link aggregator

feat: add supervisord config for multi-process container

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Changed files
+27
+27
supervisord.conf
··· 1 + [supervisord] 2 + nodaemon=true 3 + logfile=/dev/null 4 + logfile_maxbytes=0 5 + pidfile=/tmp/supervisord.pid 6 + 7 + [program:webapp] 8 + command=node build 9 + directory=/app 10 + autostart=true 11 + autorestart=true 12 + stdout_logfile=/dev/stdout 13 + stdout_logfile_maxbytes=0 14 + stderr_logfile=/dev/stderr 15 + stderr_logfile_maxbytes=0 16 + priority=10 17 + 18 + [program:ingester] 19 + command=node build/ingester.js 20 + directory=/app 21 + autostart=true 22 + autorestart=true 23 + stdout_logfile=/dev/stdout 24 + stdout_logfile_maxbytes=0 25 + stderr_logfile=/dev/stderr 26 + stderr_logfile_maxbytes=0 27 + priority=20