Skip to Content
StatixFlow Next Docs
Quickstart

Quickstart

Prerequisites

  • Node.js ≥ 20.9 (the minimum required by next@16.3.1, which this template pins).
  • No database, API keys, or environment variables are required to run the template locally.

Install

npm install

Scripts

The template ships with four npm scripts — nothing else:

npm run dev # start the dev server (Next.js, Turbopack by default) npm run build # production build npm run start # serve the production build npm run lint # eslint (flat config — eslint-config-next core-web-vitals + typescript)

There is no test suite configured in this repo.

Formatting

Formatting is handled by Prettier (.prettierrc) with prettier-plugin-tailwindcss, which sorts Tailwind classes for you. Run:

npx prettier --write <files>

rather than hand-sorting Tailwind classes yourself — the plugin’s ordering is the project’s convention.

Next steps

Last updated on