mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-10-30 05:57:12 +00:00
* feat: add recording viewer and vnc * feat: add recording viewer and vnc * feat: add recording viewer and vnc * feat: add recording viewer and vnc * chore: update gitignore [skip ci] * chore: update dev compose [skip ci] * fix: only run manually
23 lines
503 B
Plaintext
23 lines
503 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:api]
|
|
command=pdm run python -m uvicorn api.backend.app:app --reload --host 0.0.0.0 --port 8000
|
|
directory=/project/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stderr_logfile=/dev/stderr
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:worker]
|
|
command=/project/app/start.sh
|
|
directory=/project/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stderr_logfile=/dev/stderr
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile_maxbytes=0
|