There are two different folders:
-
server:
where your backend lives -
client:
Frontend of your application
To install, you need to go to both directories and install their packages as such:
cd server
npm install
cd client
npm install
To run the frontend
make sure you are under the client folder and:
npm start
To run the backend
make sure you are under the api folder and:
npm run start:dev