# InstallationCreate a Thulite project using the CLI with a template and optional integrations.

This page guides you through creating a new Thulite project with a template and optional integrations.

## Create a new project

Run the command for your package manager to start an interactive [CLI](/reference/cli/) setup:

{{< tabs "create-new-site" >}}
{{< tab "npm" >}}

```bash
npm create thulite@latest
```

{{< /tab >}}
{{< tab "pnpm" >}}

```bash
pnpm create thulite
```

{{< /tab >}}
{{< tab "Yarn" >}}

```bash
yarn create thulite
```

{{< /tab >}}
{{< tab "bun" >}}

```bash
bun create thulite
```

{{< /tab >}}
{{< /tabs >}}

This will guide you through an interactive setup process where you'll select your project name, [choose a template](https://thulite.io/templates/), and pick your preferred variant. Follow the prompts as shown below:

{{< steps >}}
{{< step >}}

Enter your project name /installation directory

```txt {frame="none"}
│
◆  Project name:
│  thulite-project
└
```

{{< /step >}}
{{< step >}}

Select a template

```txt {frame="none"}
◆  Select a template:
│  ○ Doks theme
│  ○ Bolt theme
│  ○ Tailwind CSS starter
│  ○ Bootstrap starter
│  ● Basic starter
└
```

{{< /step >}}
{{< step >}}

Select a variant

```txt {frame="none"}
◆  Select a variant:
│  ● With recommended integrations (SEO and Images)
│  ○ Without recommended integrations
└
```

{{< /step >}}
{{< step >}}

Install and start now?

```txt {frame="none"}
◆  Install with npm and start now?
│  ● Yes / ○ No
└
```

{{< /step >}}
{{< step >}}

Scaffolding project

```txt {frame="none"}
◇  Scaffolding project in /home/h-enk/thulite-project...
│
◇  Installing dependencies with npm...
│
◇  Starting dev server...
```

{{< /step >}}
{{< /steps >}}

You'll now have a new [project directory](/basics/project-structure/) with all the necessary files and configurations for your site.
{.mt-3}

## Configure Thulite

{{< link-card
  title="Configure Thulite"
  description="Update settings, parameters, and page front matter."
  href="/start-here/configuration/"
>}}
