forked from verdnatura/salix-front
36 lines
372 B
Markdown
36 lines
372 B
Markdown
# Lilium (lilium-front)
|
|
|
|
Lilium frontend
|
|
|
|
## Install the dependencies
|
|
|
|
```bash
|
|
yarn
|
|
# or
|
|
npm install
|
|
```
|
|
|
|
### Start the app in development mode (hot-code reloading, error reporting, etc.)
|
|
|
|
```bash
|
|
quasar dev
|
|
```
|
|
|
|
### Run unit tests
|
|
|
|
```bash
|
|
npm run test:unit
|
|
```
|
|
|
|
### Run e2e tests
|
|
|
|
```bash
|
|
npm run test:e2e
|
|
```
|
|
|
|
### Build the app for production
|
|
|
|
```bash
|
|
quasar build
|
|
```
|