config(execute-service): enable auto-create tables in production

Sets EXECUTE_DB_AUTO_CREATE_TABLES=true so the service creates
its own tables on startup instead of relying on non-existent
alembic migrations.
This commit is contained in:
Hermes Agent 2026-05-27 19:20:07 +00:00
parent 267356de97
commit f9623b9ca2

View file

@ -11,3 +11,4 @@ data:
EXECUTE_REDIS_PORT: "6379" EXECUTE_REDIS_PORT: "6379"
KAFKA_BOOTSTRAP_SERVERS: "trading-kafka-kafka-bootstrap.customer1.svc.cluster.local:9092" KAFKA_BOOTSTRAP_SERVERS: "trading-kafka-kafka-bootstrap.customer1.svc.cluster.local:9092"
EXECUTE_LOG_LEVEL: "info" EXECUTE_LOG_LEVEL: "info"
EXECUTE_DB_AUTO_CREATE_TABLES: "true"