nicegui #4

Merged
Ethanfel merged 22 commits from nicegui into main 2026-01-20 11:48:11 +01:00
Showing only changes of commit 091936069a - Show all commits

View File

@@ -335,4 +335,9 @@ ui.keyboard(on_key=handle_key)
refresh_ui()
# Start App
ui.run(title="Gallery Sorter", port=8080, reload=True)
ui.run(
title="Gallery Sorter",
host="0.0.0.0", # <--- REQUIRED for Docker
port=8080, # <--- NiceGUI default
reload=False # Set True only for development
)