Template Installation Guidelines
Getting Started/Guides

Template Installation Guidelines

Learn how to clone your digital products, set up environmental variables, and boot local Next.js development environments.

Prerequisites Checklist

  • Node.js v18.0.0 or higher configured globally
  • npm, yarn, or pnpm package manager installed
  • A code editor (VS Code recommended)

Installation Steps

1

Extract the downloaded ZIP template file to your active development workspace directory and open your terminal inside it.

2

Install dependencies using your preferred package runner command.

npm install
# or
pnpm install
# or
yarn install
3

Copy the environmental placeholder file to configure local setups.

cp .env.example .env.local
4

Boot the local development server checking Turbopack configurations.

npm run dev
Developer Tips
  • By default, templates boot on localhost:3000.
  • Check next.config.ts to verify custom asset host domains settings.