mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
* push review agent implementation * feedback * wip integrating review agent into monorepo * move review agent to web * feedback * feedback * add rate limit throttling to octokit * configure agent ui in app * docs * add review command logic and add logging for review agent to data cache dir * fix bug with llm returning multiple reviews in single invocation * fix doc link bug * feedback and improved docs for review agent * review agent doc nits * mcp doc nit
40 lines
No EOL
860 B
Text
40 lines
No EOL
860 B
Text
[supervisord]
|
|
nodaemon=true
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
|
|
[program:zoekt]
|
|
command=./prefix-output.sh zoekt-webserver -index %(ENV_DATA_CACHE_DIR)s/index -rpc
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=3
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
|
|
[program:web]
|
|
command=./prefix-output.sh node packages/web/server.js
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=3
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
|
|
[program:backend]
|
|
command=./prefix-output.sh node packages/backend/dist/index.js
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=3
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
|
|
[program:redis]
|
|
command=redis-server --dir %(ENV_REDIS_DATA_DIR)s
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=3
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true |