Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 390 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 390 Bytes

Project Setup

  1. run server (proxy)

cd server

npm install // once
DEBUG=myapp:* npm start
  1. run front-end cd ../
npm install // once
npm run dev 

Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Lint with ESLint

npm run lint