Fastify Server
cd backend
cp .env.sample .envRun a mongo container
docker run -d -p 27017:27017 mongoInstall dependencies
npm installStart development mode
npm run devnpm run testReact (by vite)
cd frontendInstall dependencies
npm installStart development mode
npm run devVisit http://localhost:5173
npm run test:e2eIf occur some error, make sure you have installed the browser
# depends on your playwright.config.ts setting
npx playwright install chromiumshow playwright report
npx playwright show-reportexecute end-to-end tests in playwright UI
npm run test:ui