Firstly run npm install in the server folder
To run backend use next commands:
- dev mode:
cd server; npm run dev - prod mode:
cd server; npm start - lint:
cd server; npm run lint - lint (with fixing):
cd server; npm run lint:fix
Firstly run npm install in the client folder
To run frontend use next commands:
- dev mode:
cd client; npm run dev - prod mode:
cd client; npm run build; npm run preview - lint:
cd client; npm run lint