authelia/scripts/authelia-scripts

17 lines
619 B
Plaintext
Raw Normal View History

#!/usr/bin/env node
var program = require('commander');
program
.version('0.0.1')
.command('suites', 'Run Authelia in specific environments.')
.command('serve', 'Run Authelia with a customized configuration.')
.command('build', 'Build production version of Authelia from source.')
.command('clean', 'Clean the production version of Authelia.')
2019-02-22 09:27:54 +00:00
.command('unittest', 'Run Authelia integration tests.')
2019-02-23 22:02:03 +00:00
.command('travis', 'Build and test Authelia on Travis.')
.command('hash-password <password>', 'Hash a password with SSHA512.')
.command('docker', 'Docker related commands.')
.parse(process.argv);