mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-29 03:01:59 +01:00
Sample Kubernetes deployment with Auth default on Also includes a bugfix for credentialed connectors with Auth turned on
19 lines
426 B
Plaintext
19 lines
426 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
logfile=/dev/stdout
|
|
logfile_maxbytes=0
|
|
|
|
[program:indexing]
|
|
command=python danswer/background/update.py
|
|
stdout_logfile=/var/log/update.log
|
|
redirect_stderr=true
|
|
stdout_logfile_maxbytes=52428800
|
|
autorestart=true
|
|
|
|
[program:file_deletion]
|
|
command=python danswer/background/file_deletion.py
|
|
stdout_logfile=/var/log/file_deletion.log
|
|
redirect_stderr=true
|
|
stdout_logfile_maxbytes=52428800
|
|
autorestart=true
|