Complete guides for deploying PDFTools across all platforms.
| Guide | Description |
|---|---|
| Web + Domain Hosting | Deploy to Vercel, Netlify, VPS, AWS, or Google Cloud Run |
| Domain & DNS Setup | Register a domain, configure DNS, set up nginx + SSL |
| iOS App | Build and publish to the Apple App Store via Capacitor |
| Android App | Build and publish to Google Play via Capacitor |
I want to put the website online
└─► docs/deployment/web.md
I need help with my custom domain / SSL
└─► docs/deployment/domain-setup.md
I want a native iPhone/iPad app on the App Store
└─► docs/deployment/ios.md
I want a native Android app on Google Play
└─► docs/deployment/android.md
| Layer | Technology | Hosting option |
|---|---|---|
| Frontend (web) | React + Vite | Vercel · Netlify · nginx on VPS |
| Backend (API) | Node.js + Express | Docker · AWS ECS · Google Cloud Run |
| Cache / Queue | Redis | Docker · AWS ElastiCache · Upstash |
| iOS native | Capacitor + WKWebView | Apple App Store |
| Android native | Capacitor + Android WebView | Google Play |
.com domain.See backend/.env.example for the full list. Key vars:
NODE_ENV=production
FRONTEND_URL=https://yourdomain.com
STRIPE_SECRET_KEY=sk_live_...
STRIPE_WEBHOOK_SECRET=whsec_...
REDIS_URL=redis://localhost:6379
For the frontend (set at build time):
VITE_API_URL=https://api.yourdomain.com