We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52aee37 commit 3f1b056Copy full SHA for 3f1b056
1 file changed
bin/ldnode.js
@@ -22,12 +22,10 @@ var argv = require('nomnom')
22
.option('uriBase', {
23
full: 'uri',
24
abbr: 'u',
25
- metavar: 'URI',
26
help: 'Default address of the server (e.g. http[s]://host:port/path)'
27
})
28
.option('fileBase', {
29
abbr: 'b',
30
- metavar: 'PATH',
31
full: 'path',
32
help: 'Base location to serve resources'
33
@@ -66,7 +64,11 @@ var argv = require('nomnom')
66
64
.option('webidCert', {
67
65
help: 'Path to the webid cert',
68
full: 'webid-cert',
69
- abbr: 'c'
+ abbr: 'c',
+ })
+ .option('secret', {
70
+ help: 'HTTP Session secret key (e.g. "your secret phrase")',
71
+ abbr: 's'
72
73
.parse();
74
0 commit comments