Publish marketing + privacy site (GitHub Pages) and refresh privacy policy#37
Merged
Conversation
Publishes a small, self-contained static site (source in `site/`) to GitHub Pages via a `gh-pages` branch, giving clean URLs for App Store Connect instead of a repo blob link: - Marketing: https://burkben.github.io/HotWheelsID/ - Privacy: https://burkben.github.io/HotWheelsID/privacy/ The site is isolated from internal `docs/` (roadmap, ADRs), which are never published. Brand-matched dark theme; no external assets/deps. Republish after edits with: git push origin "$(git subtree split --prefix site main):refs/heads/gh-pages" --force Also corrects the privacy policy, which predated on-device persistence: it claimed data was held 'in memory' and 'cleared when you close the app'. The app now stores garage, race history, achievements, and settings in a local on-device database — still never transmitted, no servers, no analytics, no network. Updated the policy + HTML to describe what is stored locally and that deleting the app removes it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
What
Gives RedlineID clean, brand-matched public URLs for the App Store Connect Privacy Policy and Marketing fields (instead of a raw GitHub blob link), and corrects the privacy policy to match what the app actually does today.
Live now (deployed from the
gh-pagesbranch):Changes
site/— a small, self-contained static site (dark theme matching the app palette; no external assets or dependencies):index.html— marketing landing (what the app does, links to GitHub + privacy).privacy/index.html— the privacy policy as a styled page.assets/— app icon + favicon;.nojekyllto serve raw HTML.docs/legal/privacy-policy.md— corrected. The previous version (2026-06-15) predated on-device persistence and claimed data was held "in memory" and "cleared when you close the app." The app now stores garage, race history, achievements, and settings in a local on-device database. Updated to describe what's stored locally — while keeping the core truth intact: no collection, no transmission, no servers, no analytics, no network; deleting the app removes all data.docs/guides/ios-testflight.md— records the two live URLs and the one-line republish command.Deployment
Served by GitHub Pages from
gh-pages(already enabled + built — both URLs return HTTP 200). The site source of truth stays insite/onmain. To republish after edits:git push origin "$(git subtree split --prefix site main):refs/heads/gh-pages" --forceRisk
Docs + static site only — no app code, no runtime impact. Internal
docs/(roadmap, ADRs) are not published; onlysite/is served.