salix-front/README.md

40 lines
434 B
Markdown
Raw Permalink Normal View History

2023-01-03 13:34:23 +00:00
# Lilium (lilium-front)
2022-12-20 11:00:36 +00:00
2023-01-03 13:34:23 +00:00
Lilium frontend
2022-12-20 11:00:36 +00:00
## Install the dependencies
```bash
2024-03-15 09:43:25 +00:00
pnpm install
2022-12-20 11:00:36 +00:00
```
2023-01-03 13:39:04 +00:00
### Install quasar cli
```bash
2024-03-15 09:43:25 +00:00
sudo npm install -g @quasar/cli
2023-01-03 13:39:04 +00:00
```
2022-12-20 11:00:36 +00:00
### Start the app in development mode (hot-code reloading, error reporting, etc.)
```bash
quasar dev
```
2023-01-03 13:34:23 +00:00
### Run unit tests
2022-12-20 11:00:36 +00:00
```bash
2024-03-15 09:43:25 +00:00
pnpm run test:unit
2022-12-20 11:00:36 +00:00
```
2023-01-03 13:34:23 +00:00
### Run e2e tests
2022-12-20 11:00:36 +00:00
```bash
2024-03-15 09:43:25 +00:00
pnpm run test:e2e
2022-12-20 11:00:36 +00:00
```
### Build the app for production
```bash
quasar build
```