npm install
npm run dev
npm run build
npm start
docker compose up
The application will be exposed at http://localhost:3003
on your computer.
Run Unit Tests with Vitest (NOT IMPLEMENTED)
npm run test:unit
Run End-to-End Tests with Cypress (NOT IMPLEMENTED)
npm run test:e2e:dev
This runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with test:e2e
before deploying (e.g. in CI environments):
npm run build
npm run test:e2e
Lint with ESLint
npm run lint