VexellDocs · v1.5

Getting started

Installation

Five minutes from zero to running. Pick your edition with the tabs below.

Requirements

Both editions share the same baseline. No databases, no API keys required to run the templates.

  • Node.js 20.x or newer (Node 22 recommended)
  • npm, pnpm, or bun
  • Modern browser (Chrome 120+, Safari 17+, Firefox 121+)

Quickstart

Switch the tab to your edition. The choice persists across the docs.

bash
# After downloading the Vexell Next.js edition zip from your Envato Downloads:
unzip vexell-next-v1.5.zip
cd vexell-next
pnpm install
pnpm dev          # local dev at http://localhost:3000
pnpm build        # production build (.next/)
pnpm start        # serve the production build

Verify the install

Once the dev server is up, the routes below should load.

bash
# In another terminal, verify the dev server is healthy:
curl -I http://localhost:3000/
# Expect: HTTP/1.1 200 OK
# Routes available:
#   /                              ← marketing home
#   /components                    ← components gallery
#   /ai-coding                     ← Axiom demo (one of 9 verticals)
#   /dashboard                     ← workspace demo
#   /themes                        ← theme customizer demo
#   /status                        ← public status demo

Read next