Skip first-run onboarding wizard in gateway mode#48
Merged
Conversation
Set HERMES_WEBUI_SKIP_ONBOARDING=1 so the provider-setup wizard doesn't appear on first login. When connecting to an existing gateway the provider is already configured there; the wizard is redundant. https://claude.ai/code/session_01Xwf5nZf6d1npMerNteodq2
There was a problem hiding this comment.
Pull request overview
This PR updates the Hermes WebUI app definition so that the first-run onboarding wizard is skipped when the app is deployed in gateway mode, avoiding redundant setup steps when the gateway already contains the provider/API configuration.
Changes:
- Adds
HERMES_WEBUI_SKIP_ONBOARDING=1to the Hermes WebUI container environment. - Increments the app’s
tipi_versionand updates theupdated_attimestamp to reflect the definition change.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| apps/hermes-webui/docker-compose.json | Adds the HERMES_WEBUI_SKIP_ONBOARDING env var to suppress the onboarding wizard in gateway deployments. |
| apps/hermes-webui/config.json | Bumps tipi_version and refreshes updated_at to reflect the app definition update. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
HERMES_WEBUI_SKIP_ONBOARDING=1in the container environmentWhy
On fresh install the WebUI presents a wizard to configure a local gateway and upstream provider. Since this app definition always runs in gateway mode (
HERMES_WEBUI_CHAT_BACKEND=gateway) against a user-suppliedHERMES_WEBUI_GATEWAY_BASE_URL, the wizard should never appear.Test plan
bun testpasses (54 tests, verified locally)https://claude.ai/code/session_01Xwf5nZf6d1npMerNteodq2
Generated by Claude Code