1
0
Fork 0
mirror of synced 2024-08-12 16:41:26 +12:00

default value for env variable

This commit is contained in:
Peter Clement 2022-05-19 10:56:51 +01:00
parent f999554361
commit a7a27aa349
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ const DEFAULT_TEMPLATES_BUCKET =
"prod-budi-templates.s3-eu-west-1.amazonaws.com"
exports.fetch = async function (ctx) {
let type = env.TEMPLATE_REPOSITORY || "app"
let type = env.TEMPLATE_REPOSITORY
let response,
error = false
try {

View file

@ -78,7 +78,7 @@ module.exports = {
ALLOW_DEV_AUTOMATIONS: process.env.ALLOW_DEV_AUTOMATIONS,
DISABLE_THREADING: process.env.DISABLE_THREADING,
SQL_MAX_ROWS: process.env.SQL_MAX_ROWS,
TEMPLATE_REPOSITORY: process.env.TEMPLATE_REPOSITORY,
TEMPLATE_REPOSITORY: process.env.TEMPLATE_REPOSITORY || "app",
_set(key, value) {
process.env[key] = value
module.exports[key] = value