DubswayAgenticAI / supervisord.conf
peace2024's picture
docker update
14ef7fe
raw
history blame contribute delete
322 Bytes
[supervisord]
nodaemon=true
logfile=/dev/null
loglevel=info
[program:web]
command=uvicorn app.main:app --host 0.0.0.0 --port 7860 --workers 1
directory=/app
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
environment=PYTHONUNBUFFERED=1,PYTHONDONTWRITEBYTECODE=1