This repository serves as a monorepo with each package living in the packages/
directory. The fully integrated application lives in the packages/vite
directory.
This repository intends to support Visual Studio Code as its primary development
environment. Its configurations in the
.vscode
directory
are committed, and an official Code Workspace for the repository can be found in
quisido.code-workspace
.
To install this repository and begin local development, run the following commands in sequence:
- Update NPM:
npm install npm@latest --global
- Install project dependencies:
npm install --legacy-peer-deps
- Upgrade all dependencies:
npm run up
npm start
to run the application and its dependencies.