You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Every time we restart the development server using start-dev, we have to click the moon/sun button in the UI to change the theme to dark mode. It would be great (and probably pretty easy) to expose this as a command line option.
Describe the solution you'd like
Perhaps something like:
temporal server start-dev --ui-theme=night
Additional context
The text was updated successfully, but these errors were encountered:
The UI at https://github.com/temporalio/ui has a special environment variable for this called VITE_DARK_MODE, so you can export VITE_DARK_MODE=1 to get dark mode. Note, this has to be set before the first page view, otherwise the value is cached upon first view. We will look into documenting this variable.
works with temporalio/ui but not the temporal cli.
Same issue for TEMPORAL_UI_PUBLIC_PATH which is more blocking for me (working on a temporal extension for Quarkus)
To reproduce the issue:
docker run -it --rm --env TEMPORAL_UI_PUBLIC_PATH=/q/temporal --env VITE_DARK_MODE=1 -p 8233:8233 --entrypoint /usr/local/bin/temporal temporaliotest/auto-setup server start-dev --ip 0.0.0.0
We have confirmed that the UI used in here does not expose this setting unlike if the UI is used directly. We have opened temporalio/ui#2308 to address this.
Is your feature request related to a problem? Please describe.
Every time we restart the development server using
start-dev
, we have to click the moon/sun button in the UI to change the theme to dark mode. It would be great (and probably pretty easy) to expose this as a command line option.Describe the solution you'd like
Perhaps something like:
Additional context
The text was updated successfully, but these errors were encountered: