### Local Development Server Start Source: https://github.com/vercel/nextjs-postgres-nextauth-tailwindcss-template/blob/main/README.md Commands to install project dependencies using pnpm and start the development server. This is the final step to run the Next.js application locally after setting up the environment. ```bash pnpm install pnpm dev ``` -------------------------------- ### Vercel CLI Commands for Environment Setup Source: https://github.com/vercel/nextjs-postgres-nextauth-tailwindcss-template/blob/main/README.md A set of commands using the Vercel CLI to link a local project to a Vercel project, pull environment variables, and manage deployment configurations. These commands are essential for setting up the project's environment variables and deployment. ```bash npm i -g vercel vercel link vercel env pull ``` -------------------------------- ### Postgres Database Schema Source: https://github.com/vercel/nextjs-postgres-nextauth-tailwindcss-template/blob/main/README.md Defines the schema for the 'products' table in a Postgres database, including a custom ENUM type for 'status'. This schema is used to store product information such as image URL, name, status, price, stock, and availability. ```sql CREATE TYPE status AS ENUM ('active', 'inactive', 'archived'); CREATE TABLE products ( id SERIAL PRIMARY KEY, image_url TEXT NOT NULL, name TEXT NOT NULL, status status NOT NULL, price NUMERIC(10, 2) NOT NULL, stock INTEGER NOT NULL, available_at TIMESTAMP NOT NULL ); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.