mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-05-24 08:53:21 +08:00
Adds documentation for default port and host.
This commit is contained in:
@@ -9,8 +9,8 @@ var logger = require('../lib/logger');
|
||||
|
||||
module.exports = new Command('serve')
|
||||
.description('start a local server for your static assets')
|
||||
.option('-p, --port <port>', 'the port on which to listen', 5000)
|
||||
.option('-o, --host <host>', 'the host on which to listen', 'localhost')
|
||||
.option('-p, --port <port>', 'the port on which to listen (default: 5000)', 5000)
|
||||
.option('-o, --host <host>', 'the host on which to listen (default: localhost)', 'localhost')
|
||||
.action(function(options) {
|
||||
var config = Config.load(options);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user