UNPKG

301 BJavaScriptView Raw
1exports.help = `
2Usage: git ssb web [<host:port>] [<options>]
3
4 Host a git ssb web server
5
6Options:
7 host Host to bind to. default: localhost
8 port Port to bind to. default: 7718
9 --public Make the instance read-only
10`
11
12exports.fn = function () {
13 require('git-ssb-web/server')
14}