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.

nest n conrod-backend

The package manager used throughout the course is Yarn, but feel free to choose whichever you prefer.

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

yarn start

Remember to set git credentials

  • git config user.name name

  • git config user.email email

Commit - Project created

Last updated