Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiebke committed Mar 7, 2024
2 parents 6d688c7 + 8de26f2 commit 95dc350
Show file tree
Hide file tree
Showing 16 changed files with 1,853 additions and 105 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.env
.git
.gitignore
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 95dc350

Please sign in to comment.