Feat: dash setup and start home page

This commit is contained in:
2021-04-13 06:26:45 +02:00
parent 94f8080acd
commit 598086ddb0
18 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python
# encoding: utf-8
import click
from ..dashboard.app import app as dash
@click.group()
def cli():
pass
@cli.command()
@click.option("--debug", default=0, help="Debug mode for dash")
def dashboard(debug):
dash.run_server(debug=bool(debug))