create-prestige Reference

create-prestige is the CLI used to scaffold a new Prestige project. It guides you through a short interactive setup and creates a TanStack Start app with Prestige already configured.

Usage

You can run the scaffold with your preferred package manager. Using the @latest tag is recommended so you get the newest template.

npm

npx @lonik/create-prestige@latest

pnpm

pnpm dlx @lonik/create-prestige@latest

yarn

yarn create @lonik/prestige

Interactive Prompts

When you run create-prestige, it prompts you for:

  1. Project Name: The name of your new project. The default is my-prestige-docs. This value is used for the project directory, package.json, and the default site title in vite.config.ts.

After you provide the project name, the CLI tool will automatically:

  • Download the official Prestige template from the GitHub repository.
  • Configure your package.json and vite.config.ts with the provided project name.
  • Install the required dependencies using your package manager.

Next Steps

Once the setup is complete, navigate into your new project directory and start the development server:

cd my-prestige-docs
npm run dev

You should see the Prestige landing page locally and can start customizing your documentation immediately.