Getting started
Starting a project from scratch
-
Make a new directory and change into it.
Terminal window mkdir my-project && cd my-project -
Run the bluprint for the graphics kit and answer all its prompts.
Terminal window bluprint start -
After the project is created, start the development server.
Terminal window pnpm start
From an existing GitHub repository
-
Clone the GitHub repo to your computer.
Terminal window git clone <url> -
Change into the project directory and install dependencies.
Terminal window cd my-projectpnpm i -
Start the development server.
Terminal window pnpm start