Configuring the project
Open the chapter code in your editor of choice. Just like in the previous chapters, we have divided up the code into the infrastructure, server, and web directories.
First, let’s go ahead and install all the dependencies for our infrastructure and server folders. Go to the infrastructure directory and in the terminal, run the following:
$ yarn
Then, back in the server directory, run the following command:
$ yarn
This will install all the project’s dependencies.
With that sorted out, let’s move on.