Deployment Checklist
Ready to go live? Take a look at the checklist below and assess whether your app is production-ready.
Basic Checklist
Environment Variables
package.json
package.jsonIs your App Name correct?
Is your App Version correct?
Configuration
Is your Tailwind configuration correct?
Are your App configurations correct?
Are there any console outputs being logged?
Build
Make sure dependencies can be installed via
npm installcommandMake sure that there are no vulnerability results from
npm auditcommandRunning
npm run buildresults to ignorable errors/warnings or no errors at all
Database
Make sure that database schema can be generated via
npx prisma generatecommandMigrate database schema from development database to production database via
npx prisma migrate deploycommand
Payments - Stripe
Is your account in production mode?
Have you made a test subscription purchase on your platform?
Legal - GDPR, Terms
Does your app have a Data Privacy Policy?
Does your app have Terms of Service?
Additional Server-related Checklist
Have you seen this checklist?
Last updated
Was this helpful?