Skip to content

Commit

Permalink
feat(config): add auth advanced config option
Browse files Browse the repository at this point in the history
closes #175
- allows for setting local password auth via command line option
  • Loading branch information
acburdine committed Mar 20, 2017
1 parent dfa5fdc commit ebc8315
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/commands/config/advanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ module.exports = [{
name: 'dbname',
description: 'Database name',
configPath: 'database.connection.database'
}, {
name: 'auth',
description: 'Type of authentication to use',
configPath: 'auth.type',
validate: value => value === 'password'
}, {
name: 'log',
description: 'Transport to send Ghost log output to',
Expand Down

0 comments on commit ebc8315

Please sign in to comment.