Skip to content

Commit

Permalink
Merge pull request #171 from mlexchange/automatic-dash-component
Browse files Browse the repository at this point in the history
Added automatic dash gui generator using dash-component-editor
  • Loading branch information
taxe10 committed Mar 7, 2024
2 parents 555c27f + 02732a6 commit 8de26f2
Show file tree
Hide file tree
Showing 9 changed files with 1,572 additions and 36 deletions.
5 changes: 2 additions & 3 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import dash_auth
import dash_mantine_components as dmc
from dash import Dash, dcc
from dash import Dash

from callbacks.control_bar import * # noqa: F403, F401
from callbacks.image_viewer import * # noqa: F403, F401
Expand Down Expand Up @@ -30,9 +30,8 @@
children=[
control_bar_layout(),
image_viewer_layout(),
dcc.Store(id="current-class-selection", data="#FFA200"),
],
)

if __name__ == "__main__":
app.run_server(debug=True)
app.run_server(host="0.0.0.0", port=8075, debug=True)
Loading

0 comments on commit 8de26f2

Please sign in to comment.