Feat: remove bootstrap and replace it with css

This commit is contained in:
2021-01-17 22:04:52 +01:00
parent 09ac9f01f8
commit 4bf8f4003e
3 changed files with 159 additions and 102 deletions

View File

@@ -87,8 +87,9 @@ def new_exam():
@cli.command()
def exam_analysis():
exam_app.run_server(debug=True)
@click.option("--debug", default=0, help="Debug mode for dash")
def exam_analysis(debug):
exam_app.run_server(debug=bool(debug))
@cli.command()