fix missing closing quote in config_generator command

Made-with: Cursor
This commit is contained in:
Adil Hafeez 2026-03-19 22:33:14 -07:00
parent 9cd764fc3e
commit bc5729ae5d

View file

@ -7,7 +7,8 @@ command=/bin/sh -c "\
uv run python -m planoai.config_generator && \ uv run python -m planoai.config_generator && \
envsubst < /app/plano_config_rendered.yaml > /app/plano_config_rendered.env_sub.yaml && \ envsubst < /app/plano_config_rendered.yaml > /app/plano_config_rendered.env_sub.yaml && \
envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && \ envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && \
touch /tmp/config_ready touch /tmp/config_ready || \
(echo 'Config generation failed, shutting down'; kill -15 $(cat /var/run/supervisord.pid))"
priority=10 priority=10
autorestart=false autorestart=false
startsecs=0 startsecs=0