This project is a CRUD web application built using Next.js 13 and json-server. The application allows users to create, read, update, and delete projects and their associated services. The data is stored in a JSON data file, and the CRUD operations are performed using HTTP requests to the json-server API. This project is intended for use as a prototype or for testing purposes, and it is not intended for production use.
- Next.js (React framework)
- React Query v4 (TanStack Query)
- JSON Server (tool for creating a fake REST API, which can be used for prototyping and testing. It allows you to quickly create a data store using JSON data, and then perform the CRUD operations on that data using HTTP requests.)
Clone the project
git clone https://github.com/yuirsilva/cost..gitGo to the project directory
cd cost.Install dependencies
npm installStart the server
npm run devStart the JSON server
npm run backend
