> For the complete documentation index, see [llms.txt](https://kinesis-school-of-programming.gitbook.io/nestjs-unleashed/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kinesis-school-of-programming.gitbook.io/nestjs-unleashed/core-module-backend-development-with-nestjs/project-creation.md).

# Project creation

In this section, we will create the base structure for the project using Nest.

First of all, let's create the project. Nest will scaffold it for us.

```sh
nest n conrod-backend
```

{% hint style="info" %}
The package manager used throughout the course is **Yarn**, but feel free to choose whichever you prefer.
{% endhint %}

Then, after entering its directory, we can run it.

```sh
yarn start
```

{% hint style="info" %}
Remember to set git credentials

* git config user.name **name**
* git config user.email **email**
  {% endhint %}

<mark style="color:green;">**Commit**</mark> - Project created
