# AyaNova client ui ## Project setup ``` First confirm all dependencies are installed as per AyaNova-client project's 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\sockeye-client 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 ```