Simple books library manager.
The project is initialized with CRA (https://create-react-app.dev/) on typescript template and with use of MUI 5 (https://mui.com/material-ui).
- Not mandatory but is reccomended the use of yarn >= 1.22 and node >= 20.10
- Clone the repo -
clone https://github.com/adrianurs/personal-library-manager.git
- Install client packages -
npm install
oryarn
- Install mock-server packages -
cd mock-server && npm install
orcd mock-server && yarn
- Include the next .env file in the project root
REACT_APP_API_URL=http://localhost:3001
- Start the server from
mock-server
folder -cd mock-server && npm start
orcd mock-server && yarn start
- Start the client app -
npm start
oryarn start