-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsupervisord.dev.conf
More file actions
49 lines (45 loc) · 1.12 KB
/
supervisord.dev.conf
File metadata and controls
49 lines (45 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[supervisord]
nodaemon=true
[program:uvicorn]
command=bash scripts/start_uvicorn.sh
directory=/app
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes = 0
stderr_logfile_maxbytes = 0
priority=999
[program:runner]
command=python scripts/run_with_reload.py python -m evalap.runners
directory=/app
environment=PYTHONPATH=.,LOG_LEVEL="INFO"
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes = 0
stderr_logfile_maxbytes = 0
priority=999
stopasgroup=true
killasgroup=true
[program:docusaurus]
command=npm run start -- --port 3000 --host 0.0.0.0
directory=/app/docs
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes = 0
stderr_logfile_maxbytes = 0
priority=999
[program:streamlit]
command=streamlit run evalap/ui/demo_streamlit/app.py --server.runOnSave true --server.headless=true --server.port 8501
directory=/app
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes = 0
stderr_logfile_maxbytes = 0
priority=999