mirror of
https://github.com/mruwnik/memory.git
synced 2025-10-22 22:56:38 +02:00
26 lines
609 B
Plaintext
26 lines
609 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
loglevel=info
|
|
logfile=/dev/stdout
|
|
logfile_maxbytes=0
|
|
user=kb
|
|
pidfile=/dev/null
|
|
|
|
[program:celery-beat]
|
|
command=celery -A memory.workers.ingest beat --pidfile= --schedule=/tmp/celerybeat-schedule
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
autorestart=true
|
|
startsecs=10
|
|
|
|
[program:discord-api]
|
|
command=uvicorn memory.discord.api:app --host 0.0.0.0 --port %(ENV_DISCORD_COLLECTOR_PORT)s
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
autorestart=true
|
|
startsecs=10
|