Motivated by our love for phu's chilli oil
git clone https://github.com/dev-academy-challenges/boilerplate-fullstack [your-project-name]
cd [your-project-name]
npm install # to install dependencies
npm run dev # to start the dev server
You can find the server running on http://localhost:3000.
This repo includes:
- two API endpoints (
/api/v1/items
and/api/v1/reviews
) - React components
- two database modules (
server/db/reviewsFunc.js
andserver/db/itemsFunc.js
) - an API client module (
client/apis/api.js
) - configuration for Jest and testing library
- configuration for server-side debugging in VS Code