Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 991 Bytes

dev.md

File metadata and controls

61 lines (42 loc) · 991 Bytes

DEV INFO

clone local

git clone --recurse-submodules REPONAME

add part

git submodule add https://github.com/XXXX

link collection

Install the dependencies

yarn
# or
npm install

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Lint the files

yarn lint
# or
npm run lint

Format the files

yarn format
# or
npm run format

Build the app for production

quasar build

to update the renderd version on github just push to the main branch. later we will change this so you can only diretly push into a dev branch. then there will be a release that merges this into main and with this merge triggers the deployment.

Customize the configuration

See Configuring quasar.config.js.