Solution repo for https://fullstackopen.com/
cd part1/courseinfo && npm install && npm run start
cd part1/unicafe && npm install && npm run start
cd part1/anecdotes && npm install && npm run start
cd part2/courseinfo && npm install && npm run start
Has a developer dependency of json-server. Add "server": "json-server -p3001 db.json"
to package.json
scripts and run
npm install && npm install json-server --save-dev && npm run server
npm run start
Create an .env file with the following content REACT_APP_WEATHER_API_KEY=<YOUR_API_KEY>
then run
npm install && npm run start