Files
raven-client/ayanova/README.md
2026-02-13 08:24:15 -08:00

48 lines
736 B
Markdown

# AyaNova client ui
## Project setup
```
First confirm all dependencies are installed as per BUILT-ENVIRONMENT.md doc. They are very specific and in many cases outdated.
Then clone/checkout repository from GIT
Finally:
Install frontend dependencies:
cd c:\data\code\raven-client\ayanova
npm ci
Note: Use `npm ci` (not `npm install`) to install exact versions from package-lock.json
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Run your tests
```
npm run test
```
### Lints and fixes files
```
npm run lint
```
### Run your end-to-end tests
```
npm run test:e2e
```
### Run your unit tests
```
npm run test:unit
```