Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 821 Bytes

README.md

File metadata and controls

58 lines (41 loc) · 821 Bytes

Setup the frontend

npm install

.env.local file

Linux:

cp .env.local.example .env.local

Windows:

copy .env.local.example .env.local

Compile and Hot-Reload for Development

Note: For local development, an SSL-certificate is needed to interact with the CAS-server of UGent. Install mkcert and run

mkdir local-cert
mkcert -key-file local-cert/localhost-key.pem -cert-file local-cert/localhost.pem localhost
npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Lint with ESLint

npm run lint

Format with prettier

npm run format