Can I get .env file example for redash 9?
I d like to put queue values for worker. However, I think it is quite different from v8

I tried to run workers like below, but it does not send an email

[program:scheduler]
command=/opt/redash/current/bin/run /opt/redash/current/manage.py rq scheduler
process_name=%(program_name)s-%(process_num)s
user=redash
numprocs=1
directory=/opt/redash/current
stopsignal=TERM
autostart=true
autorestart=true

[program:worker_adhoc]
command=/opt/redash/current/bin/run /opt/redash/current/manage.py rq worker queries
process_name=%(program_name)s-%(process_num)s
user=redash
numprocs=3
directory=/opt/redash/current
stopsignal=TERM
autostart=true
autorestart=true

[program:worker]
command=/opt/redash/current/bin/run /opt/redash/current/manage.py rq worker "periodic emails default"
process_name=%(program_name)s-%(process_num)s
user=redash
numprocs=1
directory=/opt/redash/current
stopsignal=TERM
autostart=true
autorestart=true

[eventlistener:worker_healthcheck]
serverurl=AUTO
command=/opt/redash/current/bin/run /opt/redash/current/manage.py rq healthcheck
events=TICK_60
1 Like