Skip to content

Commit

Permalink
command line arg for css
Browse files Browse the repository at this point in the history
  • Loading branch information
balmas committed Feb 26, 2016
1 parent 02789f6 commit de62cae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flask_nemo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1166,6 +1166,8 @@ def cmd():
help='Host to use for the HTTP Server')
parser.add_argument('--inventory', type=str, default=None,
help='Inventory to request from the endpoint')
parser.add_argument('--css', type=str, default="",
help='Full path to secondary css file')
parser.add_argument('--groupby', type=int, default=25,
help='Number of passage to group in the deepest level of the hierarchy')
parser.add_argument('--debug', action="store_true", default=False, help="Set-up the application for debugging")
Expand All @@ -1182,6 +1184,7 @@ def cmd():
app=app,
name="nemo",
base_url="",
css=[ args.css ],
inventory = args.inventory,
api_url=args.endpoint,
chunker={"default": lambda x, y: Nemo.level_grouper(x, y, groupby=args.groupby)}
Expand Down

0 comments on commit de62cae

Please sign in to comment.