Add GUI welcome screen, logo branding, and one-command launcher#5
Merged
Conversation
- Replace "OpenPyTEA" wordmark in header with logo image - Add welcome/splash page with feature overview and Get Started button - Add start.sh: one-command launcher that bootstraps .venv + npm deps, starts backend + frontend, and opens the browser - Update README with quick-start section - Defer examples fetch until welcome dismissed to avoid spurious "Load failed" error on cold start Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0d61e25 to
ff806f0
Compare
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
frontend/public/logo.png)start.shone-command launcher at the repo root: bootstraps.venv+ frontend deps on first run, starts backend (:8000) and frontend (:5173) together, opens the browser when Vite is ready, and stops both on Ctrl+CREADME.mdwith a quick-start section pointing to./start.sh(manual steps preserved in a<details>block)getExamples()fetch until the welcome is dismissed — avoids a spurious "Load failed" error bar on cold start when the backend hasn't finished booting yetNotes
mainat80ca65b(before v2.1.0). All GUI/launcher changes are isolated to:frontend/src/App.tsx,frontend/src/App.css,frontend/src/pages/WelcomePage.tsx,frontend/public/logo.png,start.sh,README.md.README.mdchange will likely conflict with the recent tutorial-section additions — happy to rebase and resolve once you've had a look.Test plan
./start.shon a fresh clone bootstraps.venv(Python ≥3.10), installs backend deps, runsnpm installhttp://localhost:5173once Vite is serving🤖 Generated with Claude Code