For this project to start you need to visit this link: https://github.com/scandiweb/junior-react-endpoint clone it, install dependencies and setup folder structure as shown below.
To run this project follow these steps
- Clone it
- Install dependencies
- Update your scripts on your backend's server package.json file to as below:
"scripts": { "build": "tsc", "start": "node dist/main.js", "client": "npm start --prefix client", "dev": "concurrently "tsc -w" "nodemon dist/main.js"", "development": "concurrently "tsc -w" "nodemon dist/main.js" "npm run client"" }
- From root run -
npm run development