Skip to content

brandonperfetti/mastering-nuxt-3

Repository files navigation

Mastering Nuxt 3

This is a repository of my work for the course Mastering Nuxt 3. It contains the source code for the course project.

Look at the nuxt 3 documentation to learn more.

Prerequisites

Node.js installed on your machine.

Nuxt.js installed on your machine.

Stripe account to get the API keys.

Supabase account to get the API keys.

Setup

Make sure to install the dependencies:

# pnpm
pnpm install --shamefully-hoist

Configure Prisma:

prisma generate

Development Server

Start the development server on https://localhost:3000

pnpm dev

Production

Build the application for production:

pnpm build

Locally preview production build:

pnpm preview

Checkout the deployment documentation for more information.