refactor(website): host demo videos on Vercel Blob (out of git)#647
Merged
Conversation
The homepage DemoShowcase clips are large binaries that bloated git history on every recut (~3.6 MB across versions). Move them to a public Vercel Blob store (ngaf-website-assets) and reference absolute URLs; remove them from the repo and re-ignore apps/website/public/demo/ so video bytes never re-enter history. - DemoShowcase: DEMO_CDN constant -> blob URLs (same filenames, stable URLs). - Add apps/website/scripts/upload-demo-media.md runbook. - A follow-up history rewrite purges the already-committed blobs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
blove
added a commit
that referenced
this pull request
Jun 9, 2026
The homepage DemoShowcase clips are large binaries that bloated git history on every recut (~3.6 MB across versions). Move them to a public Vercel Blob store (ngaf-website-assets) and reference absolute URLs; remove them from the repo and re-ignore apps/website/public/demo/ so video bytes never re-enter history. - DemoShowcase: DEMO_CDN constant -> blob URLs (same filenames, stable URLs). - Add apps/website/scripts/upload-demo-media.md runbook. - A follow-up history rewrite purges the already-committed blobs. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.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.
Summary
Stops committing the homepage demo clips to the repo — they're large binaries that bloated history on every recut (~3.6 MB across versions). Moves them to a public Vercel Blob store and references them by absolute URL.
DEMO_CDNconstant inDemoShowcase.tsx→https://elgkdaxpsvqcrns1.public.blob.vercel-storage.com/demo/*(same filenames; uploads reuse pathnames so the URLs stay stable across recuts).git rmthe 6 files fromapps/website/public/demo/and re-add theapps/website/public/demo/gitignore rule so video bytes can never re-enter history.apps/website/scripts/upload-demo-media.mdrunbook (store id, base URL, re-upload curl steps).Blob store:
ngaf-website-assets(team cacheplane, public), connected to thethreadplaneproject. All six files verified live (HTTP 200) at the CDN base.Note: this only prevents future bloat. A separate, coordinated history rewrite (git filter-repo + force-push
main) will purge the already-committed blobs.Test Plan
websitejob green (nx lint,nx build website)./demo/*404s).🤖 Generated with Claude Code