Skip to content

Commit

Permalink
feat: allow any string for env config field
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkdean committed Mar 2, 2018
1 parent 1833299 commit 5094929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const path = require('path')
const conf = convict({
env: {
doc: 'The applicaton environment',
format: ['production', 'development', 'test'],
format: String,
default: 'development',
env: 'NODE_ENV'
},
Expand Down

0 comments on commit 5094929

Please sign in to comment.