Skip to content

Commit

Permalink
Serve on localhost by default; resolves #19
Browse files Browse the repository at this point in the history
  • Loading branch information
hfaran committed Apr 22, 2016
1 parent b763369 commit 9b9dc93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ docs/_build/
target/

# Created by .ignore support plugin (hsz.mobi)

# IDE
.idea
2 changes: 1 addition & 1 deletion slackviewer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def configure_app(app, archive, debug):
@click.option("-z", "--archive", type=click.Path(), required=True,
default=envvar('SEV_ARCHIVE', ''),
help="Path to your Slack export archive (.zip file)")
@click.option('-I', '--ip', default=envvar('SEV_IP', '0.0.0.0'),
@click.option('-I', '--ip', default=envvar('SEV_IP', 'localhost'),
type=click.STRING, help="Host IP to serve your content on")
@click.option('--no-browser', is_flag=True,
default=flag_ennvar("SEV_NO_BROWSER"),
Expand Down

0 comments on commit 9b9dc93

Please sign in to comment.