40 lines
431 B
Markdown
40 lines
431 B
Markdown
# Lilium (lilium-front)
|
|
|
|
Lilium frontend
|
|
|
|
## Install the dependencies
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
### Install quasar cli
|
|
|
|
```bash
|
|
sudo npm install -g @quasar/cli
|
|
```
|
|
|
|
### 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
|
|
```
|