-
cd frontend
-
Run
npm install
on the first time and when new packages are added -
Run
npm run dev
to start development servernpm run build
to build app for productionnpm start
to run the build app in production mode
cd backend
- Run
npm install
on the first time and when new packages are added - Run
npm start
to start the server
ESLint and Prettier is set up to lint and formmat the code when ever you try to commit. You can also run the commands mannually in the frontend and backend.
npm run lint-check
reports any lint errors or code style discrepanciesnpm run lint-fix
fixes automatically fixable lint errors and reformats the codenpm run format
reformats the code but doe snot do any linting