tree: 97a254ca14a97141313804a539394baf9c4e0ef2 [path history] [tgz]
  1. .husky/
  2. cypress/
  3. deployment/
  4. nginx_config/
  5. projects/
  6. src/
  7. .browserslistrc
  8. .dockerignore
  9. .env
  10. .eslintignore
  11. .eslintrc.json
  12. .gitignore
  13. .lintstagedrc.json
  14. .prettierignore
  15. .prettierrc.json
  16. angular.json
  17. cypress.config.ts
  18. docker-entrypoint.sh
  19. Dockerfile
  20. karma.conf.js
  21. package-lock.json
  22. package.json
  23. README.md
  24. tsconfig.json
  25. tsconfig.spec.json
ui/README.md

Streampipes UI

Development

Please make sure you have a recent version of node and npm (bundled with node) installed.

To build the ui, perform the following steps:

    npm install
    npm run build

To test your local version of the UI execute the following commands:

    npm install
    npm start

(be aware that this requires a StreamPipes instance that runs without the UI, read more here)

Formatting and Linting

Running npm install will cause a pre-commit hook to be created. This hook ensures that if you want to commit changes to this repository, these changes are compliant with our formatting and linting rules.

If you see errors there, you can try to run npm run format:fix and npm run lint:fix to fix these issues automatically. Otherwise, you have to run npm run format and npm run lint to get additional information about the problems.