Skip to content

Deployment Overview

PIP AI is a Nuxt 4 application that can be deployed to various hosting platforms.

Build

bash
npm run build

This generates a production build in .output/ using Nitro's universal output format.

Preview Locally

bash
npm run preview

Serves the production build locally for testing before deployment.

Deployment Targets

Nuxt 4 supports multiple deployment targets:

PlatformMethod
VercelAutomatic Nuxt detection
NetlifyAutomatic Nuxt detection
Node.jsnode .output/server/index.mjs
DockerCustom Dockerfile
Staticnpm run generate (SSG)

Required Services

Before deploying, ensure these services are provisioned:

  1. Supabase — Database, auth, storage, realtime
  2. N8N — Workflow orchestration (self-hosted or cloud)
  3. Domain & SSL — For production URL

Environment Variables

All environment variables must be configured in the deployment platform. See Environment Checklist for the complete list.

Built with VitePress