New Salix front-end
Go to file
Jorge Penadés 07a36b4e53 Merge branch 'dev' of https: refs #6564//gitea.verdnatura.es/verdnatura/salix-front into 6564-enhanceTicketAdvance 2025-04-02 15:09:56 +02:00
.husky
.vscode
docs chore: try fix cypress bug 2025-03-12 11:34:02 +01:00
public
src Merge branch 'dev' of https: refs #6564//gitea.verdnatura.es/verdnatura/salix-front into 6564-enhanceTicketAdvance 2025-04-02 15:09:56 +02:00
test test: skip VnShortcuts and WorkerList test suites 2025-04-02 12:52:51 +02:00
.dockerignore ci: refs #6695 add .dockerignore and user identity debug 2025-02-20 14:50:05 +01:00
.editorconfig
.eslintignore
.eslintrc.js
.gitignore fix: refs #6695 update Cypress configuration and test result paths 2025-02-26 12:13:26 +01:00
.npmrc
.prettierrc.js
CHANGELOG.md chore: update changelog 2025-03-25 08:39:19 +01:00
Dockerfile perf: refs #6695 only necessary 2025-02-18 10:44:51 +01:00
Jenkinsfile chore: update Cypress parallel test execution to use 2 instances 2025-03-27 13:26:42 +01:00
README.md docs: add production serving instructions to README 2025-03-25 12:23:49 +01:00
bun.lockb
changelog.sh
commitlint.config.js
cypress.config.js chore: remove slowTestThreshold from Cypress configuration 2025-03-16 13:57:51 +01:00
index.html
jsconfig.json
package.json chore: update version to 25.16.0 in package.json 2025-04-01 08:32:58 +02:00
pnpm-lock.yaml chore: add junit-merge dependency to package.json 2025-03-14 08:02:13 +01:00
postcss.config.js
proxy-serve.js
quasar.config.js Revert "revert 1015acefb7e400be2d8b5958dba69b4d98276b34" 2025-02-25 09:53:02 +01:00
quasar.extensions.json
quasar.testing.json
vitest.config.js ci: refs #6695 vitest junit file fix 2025-02-21 12:17:05 +01:00

README.md

Lilium (lilium-front)

Lilium frontend

Install the dependencies

pnpm install

Install quasar cli

sudo npm install -g @quasar/cli

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

quasar dev

Run unit tests

pnpm run test:front

Run e2e tests

pnpm run test:e2e

Run e2e parallel

pnpm run test:e2e:parallel

View e2e parallel report

pnpm run test:e2e:summary

Build the app for production

quasar build

Serve the app for production

quasar build quasar serve dist/spa --host 0.0.0.0 --proxy=./proxy-serve.js