Marketing landing page for bugsift. Single static HTML file, deployed to Firebase Hosting.
npm install -g firebase-tools
firebase login
firebase use --add # pick or create your Firebase project
firebase deploy --only hostingAdd your domain in the Firebase console → Hosting → Add custom domain. Firebase provisions TLS via Let's Encrypt automatically.
firebase.json includes a 301 rewrite so once deployed, anyone can run:
curl -fsSL https://bugsift.dev/install | bash…and Firebase will redirect to the latest install.sh on GitHub.
public/index.html- the landing page (single file, inline CSS, no build step).public/favicon.svg- favicon.public/og-image.svg- source for the OG preview. Export toog-image.pngat 1200×630 for best compatibility. Any SVG → PNG tool works (rsvg-convert, CloudConvert, screenshot, etc.).firebase.json- hosting config (cache headers, security headers, rewrite)..firebaserc- Firebase project binding. Replace the placeholder with your project ID, or runfirebase use --add.