Skip to main content

Installation

Acolyte is a Next.js application. You can run it locally in a few minutes.

Prerequisites

  • Node.js 20.x or higher
  • npm (bundled with Node.js)

Check your versions:

node --version
npm --version

Install and run

  1. Clone the repository

    git clone https://github.com/jbouder/acolyte.git
    cd acolyte
  2. Install dependencies

    npm install
  3. Start the development server

    npm run dev

    The dev server runs with Turbopack for fast refresh.

  4. Open the app

    Navigate to http://localhost:3000.

Available scripts

ScriptDescription
npm run devStart the development server (Turbopack).
npm run buildCreate an optimized production build.
npm startServe the production build.
npm testRun the Jest test suite.
npm run lintLint with Biome and auto-fix.
npm run lint:ciLint without writing changes (CI mode).
npm run formatFormat code with Biome.
npm run checkRun Biome's combined lint + format check (auto-fix).
npm run check:ciCombined check without writing changes (CI mode).

Building for production

npm run build
npm start

The production server listens on port 3000 by default. For deploying to Vercel or other serverless platforms, see the Deployment guide.

Next steps