Skip to content

Getting started

Starting a project from scratch

  1. Make a new directory and change into it.

    Terminal window
    mkdir my-project && cd my-project
  2. Run the bluprint for the graphics kit and answer all its prompts.

    Terminal window
    bluprint start
  3. After the project is created, start the development server.

    Terminal window
    pnpm start

From an existing GitHub repository

  1. Clone the GitHub repo to your computer.

    Terminal window
    git clone <url>
  2. Change into the project directory and install dependencies.

    Terminal window
    cd my-project
    pnpm i
  3. Start the development server.

    Terminal window
    pnpm start