Skip to content

Commit

Permalink
document command line params
Browse files Browse the repository at this point in the history
  • Loading branch information
smn committed Jul 13, 2015
1 parent 429b5ae commit f1bbb49
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions consular/cli.py
Expand Up @@ -2,8 +2,10 @@


@click.command()
@click.option('--host', default='localhost')
@click.option('--port', default='7000', type=int)
@click.option('--host', default='localhost',
help='The host to bind to.')
@click.option('--port', default='7000', type=int,
help='The port to listen to.')
@click.option('--consul', default='http://localhost:8500',
help='The Consul HTTP API')
@click.option('--marathon', default='http://localhost:8080',
Expand Down

0 comments on commit f1bbb49

Please sign in to comment.