fix deployment of producer

This commit is contained in:
Emily
2025-04-25 22:46:33 +02:00
parent 6a157b81c9
commit b709ad285a
2 changed files with 1 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ async function main() {
const devContent = ecosystemContent
.replace("$REDIS_URL$", `${REDIS_URL_PRODUCTION}`)
.replace("$MONGO_CONNECTION_STRING$", `${DATABASE_CONNECTION_STRING_PRODUCTION}`)
.replace("$DEV_MODE$", `true`);
.replace("$DEV_MODE$", `false`);
archive.append(Buffer.from(devContent), { name: '/ecosystem.config.js' });
}