Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 875 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 875 Bytes

SPLAGen-Website

Frontend Start instructions

  1. cd frontend

  2. Run npm install on the first time and when new packages are added

  3. Run npm run dev to start development server

    • npm run build to build app for production
    • npm start to run the build app in production mode

Backend Start Instructions

  1. cd backend
  2. Run npm install on the first time and when new packages are added
  3. Run npm start to start the server

Linters & Formatters

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 discrepancies
  • npm run lint-fix fixes automatically fixable lint errors and reformats the code
  • npm run format reformats the code but doe snot do any linting