Skip to content

Commit 3a1b91a

Browse files
Fix cache start (#453)
1 parent f464d6b commit 3a1b91a

File tree

5 files changed

+2375
-1390
lines changed

5 files changed

+2375
-1390
lines changed

config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const prodOptional = {
99

1010
const envSchema = Joi.object().keys({
1111
SCHEME: Joi.string().valid('http', 'https').optional().default('http'),
12-
NODE_ENV: Joi.string().required(),
12+
NODE_ENV: Joi.string().optional().default('development'),
1313
PORT: Joi.number().optional().default(3000),
1414
DOMAIN: Joi.string().optional().default('localhost'),
1515
GITHUB_CLIENT_SECRET: Joi.string().required(),

manifest.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ var manifest = {
5252
threshold: 20,
5353
maxDelay: 15000
5454
}]
55-
}]
55+
}],
56+
console: [
57+
{ module: 'good-console' },
58+
'stdout'
59+
]
5660
},
5761
$default: {
5862
console: [

0 commit comments

Comments
 (0)