Compare commits

..

No commits in common. "83eb9c327bae93d4e415d47cb83e441909e7b175" and "2d08671247011947195ed2874b400d450285c691" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View File

@ -6,7 +6,6 @@ from dash.dependencies import Input, Output
from .app import app
from .pages.home import app as home
from .pages.exams_scores import app as exams_scores
import dash_html_components as html
@app.callback(Output("page-content", "children"), [Input("url", "pathname")])

View File

@ -2,7 +2,8 @@
# encoding: utf-8
import click
from recopytex.dashboard.index import app as dash
from recopytex.dashboard.app import app as dash
@click.group()
def cli():
@ -13,6 +14,3 @@ def cli():
@click.option("--debug", default=0, help="Debug mode for dash")
def dashboard(debug):
dash.run_server(debug=bool(debug))
if __name__ == "__main__":
cli()