Setup guide · Rails
Turn a Rails app into an installable PWA (2026)
Rails 7+ PWA setup — manifest via public/, service worker with Turbo compatibility and install prompt.
Key takeaways
- `bin/rails g pwa` scaffolds manifest and sw.js.
- Turbo Drive plays nicely with a passthrough service worker.
- InstantPWA handles iOS Safari, which Rails does not.
Before you start
- Rails 7.1+
- HTTPS origin (Kamal, Fly, Heroku with SSL)
manifest.webmanifest
{
"name": "Your product",
"short_name": "Product",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#111827",
"icons": [
{ "src": "/icon-192.png", "sizes": "192x192", "type": "image/png" },
{ "src": "/icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
]
}Step-by-step for Rails
- Step 1Generate the PWA files
Run `bin/rails g pwa` to scaffold manifest.json and service-worker.js under public/.
- Step 2Link them from application.html.erb
The generator adds the tags automatically.
- Step 3Add the install popup
Drop the InstantPWA snippet into your layout head.
Minimal sw.js
// public/sw.js
self.addEventListener('install', (e) => self.skipWaiting());
self.addEventListener('activate', (e) => self.clients.claim());
self.addEventListener('fetch', () => {});Common Rails gotchas
- Turbo drives page transitions client-side. Do not cache full HTML in the SW — cache asset URLs only.
- Rails hosts (Heroku, Fly) sometimes gzip .webmanifest. Ensure the Content-Type stays application/manifest+json.
FAQ
Do I need a native app if my Rails site is a PWA?
No. Once your Rails site meets the three PWA criteria (HTTPS, a manifest, a service worker), Chromium browsers offer to install it and iOS Safari 16.4+ supports the full standalone experience — including web push.
Will a service worker slow my Rails site down?
Not measurably on first load. The worker installs asynchronously after the page becomes interactive. On repeat visits it typically improves LCP and TTFB because assets are served from cache.
Can I still deploy my Rails site to Vercel, Netlify or Cloudflare?
Yes. Any static or edge host works — the manifest and service worker are plain files served from the origin. No build-time integration is required.
Skip the setup — drop in one line
InstantPWA handles the install prompt across iOS, Android and desktop. Free forever for one popup.
Get started free