Go to file
jpitts-uva 5c0b9d26f3
Merge pull request #168 from sartography/main
Attempt to resolve main being ahead in commits over dev
2024-02-02 03:57:14 -05:00
.github/workflows Move from master to main branch. 2022-05-16 13:26:58 -04:00
docker fixing the file modes. 2021-07-22 14:05:45 -04:00
e2e Configures eslint and fixes a bunch of linting errors. 2021-08-12 11:04:55 -04:00
node_modules/sartography-workflow-lib/lib/types Added eml and msg file types to file.d.ts. 2024-02-01 15:34:57 -05:00
src library updates 2023-02-07 15:44:47 -05:00
.browserslistrc Update Angular for bpmn (WIP) 2021-07-26 11:15:54 -04:00
.editorconfig fixing the file modes. 2021-07-22 14:05:45 -04:00
.eslintrc.json Removes unnecessary rulesets. 2021-08-13 18:11:39 -04:00
.gitignore Update .gitignore 2024-02-02 03:53:38 -05:00
.sonarcloud.properties fixing the file modes. 2021-07-22 14:05:45 -04:00
.tool-versions Must be 16.10 or higher 2023-01-19 12:38:56 -05:00
.travis.yml upgrade node js, and assure npm is at least 7.10. 2021-08-10 11:08:47 -04:00
Dockerfile Various fixes to allow docker image to build. 2023-02-14 11:39:08 -05:00
README.md Add `npm link` stuff to the README 2022-11-16 11:11:44 -05:00
angular.json Various fixes to allow docker image to build. 2023-02-14 11:39:08 -05:00
karma.conf.js fixing the file modes. 2021-07-22 14:05:45 -04:00
karma.globals.js fixing the file modes. 2021-07-22 14:06:19 -04:00
nginx.conf fixing the file modes. 2021-07-22 14:05:45 -04:00
package-lock.json Merge pull request #160 from sartography/dependabot/npm_and_yarn/http-cache-semantics-4.1.1 2023-02-14 10:58:34 -05:00
package.json Various fixes to allow docker image to build. 2023-02-14 11:39:08 -05:00
sonar-project.properties Adds CI files. Edits project properties 2020-01-14 16:52:39 -05:00
tsconfig.json Upgrade Angular 13 -> 14 2023-01-19 14:41:20 -05:00
webpack.config.js Updates all packages to latest compatible versions. Fixes all those compiler warnings about CSS. 2021-08-11 11:22:39 -04:00

README.md

sartography/cr-connect-bpmn

Build Status Coverage

CR Connect BPMN Configurator

This project was generated with Angular CLI version 7.1.1.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

You can also user npm run start:dev to get a dev server with lazy loading. This makes development much more efficient

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Local Development with Sartography Libraries

If you are making changes to the Sartography Libraries dependency, you can use npm link to connect the two systems. On the library side, run

ng build --watch

Then create a link to the built values by cd'ing into the dist directory (in a new terminal, leave the build above running)

cd sartography-libraries/dist/sartography-workflow-lib
npm link

On the frontend code, link to the sartgraph-workflow-lib:

npm link sartography-workflow-lib
ng serve

Also note that you may need to add

            "preserveSymlinks": true

to your angular.json file in build/options.

At this point any changes you make to the shared libraries should be immediately reflected in your locally running front end.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

One way to check for coverage:

Install lcov (in ubuntu: sudo apt-get install lcov)

run ng test --no-watch --code-coverage to generate a coverage directory, with an lcov file in it

run genhtml coverage/lcov.info -o coverage/html to generate an html doc that looks at coverage (index.html)

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.