Production Checklist
Before you deploy NuxtBase, confirm that your target environment matches the template’s actual runtime shape.
Runtime Baseline
Section titled “Runtime Baseline”The current NuxtBase template expects:
- Node.js
22 - one package manager:
pnpm >=10recommended,npm, oryarn - PostgreSQL
- a Nuxt server runtime, not just static file hosting
This matters because the codebase includes:
- server API routes
- auth flows
- billing and webhook handlers
- AI endpoints
- Nitro scheduled tasks
Do not treat this template as a pure nuxt generate marketing deployment.
Resource Planning
Section titled “Resource Planning”For your first production deployment, keep resources conservative.
Based on our Coolify test, a practical minimum is:
- memory: at least
3.5 GB
If you deploy below that, expect higher risk during:
- dependency installation
- Nuxt build may cause Out of Memory (OOM) errors
- cold starts
- runtime spikes from server-side work
Secret And Env Readiness
Section titled “Secret And Env Readiness”Before launch, verify:
DATABASE_URLBETTER_AUTH_SECRETBETTER_AUTH_URLNUXT_PUBLIC_SITE_URL
Then verify every enabled provider is fully configured as a pair or set:
- Google OAuth client ID and secret
- GitHub OAuth client ID and secret
- Stripe secret, publishable key, webhook secret, and price IDs
- email driver and matching credentials
- storage credentials if using
s3orr2 - AI provider and matching API key
Do not over-trust startup validation here.
The template does validate some env shape and pairing rules at startup, but it does not guarantee that every enabled provider is fully operational just because the app boots:
- some provider pairs are validated strictly, such as OAuth client ID/secret
- some services fall back when values are missing, such as mail driver fallback
to
preview - some features defer failure until runtime, such as AI provider API keys
- billing can still boot in mock mode when Stripe keys are absent
So “the server started” is not the same thing as “provider configuration is valid”. You still need flow-level verification for every provider you intend to use in production.
Build Validation Before Real Deploy
Section titled “Build Validation Before Real Deploy”Run the production build locally first:
pnpm buildpnpm previewnpm run buildnpm run previewyarn buildyarn previewThat gives you a production-shaped local check before you spend time debugging hosting-specific behavior.
Deployment Model Checklist
Section titled “Deployment Model Checklist”Use this order before you mark the release as ready:
- confirm the app builds with production env values
- confirm the database is reachable from the target host
- confirm all enabled provider credentials are real, not placeholder values
- confirm your deploy target can run a Nuxt server continuously
- confirm TLS and the final public domain are ready
- confirm you have a rollback plan for secrets or config mistakes
Scheduled Task Awareness
Section titled “Scheduled Task Awareness”The template enables Nitro scheduled tasks, including:
ai:reconcileevery 30 minutesdemo:cleanupdaily when demo mode is enabled
If your platform does not support the scheduling model you want, plan an alternative operational strategy instead of assuming these tasks will run the way they do locally.