default value for env variable
This commit is contained in:
parent
feb9973d22
commit
8c95429b08
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue