This repository serves as the official Yarn-based template for creating AristoByte UI applications using the Next.js 15 App Router. It is used internally by the AristoByte UI CLI to bootstrap new projects quickly and consistently.
git clone https://github.com/aristobyte-team/aristobyte-ui-template-nextjs-15-app-router my-app
cd my-appSet the NodeJS to 20.19.0+ version or run the below script if you have nvm on your local machine
nvm use# Yarn
yarn install
# NPM
npm install
# PNPM
pnpm install
#Bun
bun install# Yarn
yarn dev
# NPM
npm run dev
# PNPM
pnpm run dev
#Bun
bun run devOpen localhost to view your app.
# Yarn
yarn build
yarn start
# NPM
npm run build
npm run start
# PNPM
pnpm run build
pnpm run start
#Bun
bun run build
bun run startRun ESLint:
# Yarn
yarn lint
# NPM
npm lint
# PNPM
pnpm lint
#Bun
bun lintMIT © AristoByte