Next-Elite

(โ˜… 107)

๐Ÿ‘‘ An open source Nextjs Boilerplate and Starter Kit with Frontend-focused + Api-driven + Developer-experience : Next.js 16.3 + TypeScript + React 19, Oxlint, Oxfmt, Tailwind v4, Shadcn, Better-auth, RBAC, i18n, Playwright, Vitest, SEO + PWA.

  • .dockerignore
  • .env.example
  • .gitignore
  • .oxfmtrc.json
  • .oxlintrc.json
  • components.json
  • docker-compose.yml
  • Dockerfile
  • knip.json
  • lefthook.yml
  • LICENSE
  • next.config.mjs
  • package-lock.json
  • package.json
  • postcss.config.mjs
  • proxy.ts
  • README.md
  • tsconfig.json

# Installation Guide

1. Get the code
git clone https://github.com/salmanshahriar/Next-Elite

Downloads the entire project code from GitHub to your computer.

cd Next-Elite

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t next-elite .

Builds a runnable image based on the Dockerfile.

docker run --rm --env-file .env -p 6767:6767 next-elite

Runs the built image as an actual container.

docker compose up --build

Builds and starts all defined containers (server, database, etc.) at once, in the background.

docker buildx create --name multiarch --use # one-time setup

Builds a runnable image based on the Dockerfile.

docker buildx build --platform linux/amd64,linux/arm64 -t next-elite .

Builds a runnable image based on the Dockerfile.

โœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install

Downloads and installs the libraries listed in package.json.

npm run dev

Starts the development/run server.

โ”œโ”€โ”€ package-lock.json npm lockfile (single source of truth)

Type this command into your terminal and run it.

โœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation