Build & run
...
- Build taskana-web application in production mode
Code Block language bash title path: /taskana/web npm run build:prod
Build taskana-web dependency
Code Block language bash title path: /taskana/web ../mvnw clean install -fpl :taskana-web
taskana\web\src\environments\data-sources\environment-information.json contains the definition of the external configuration needed for taskana web application, currently exists next options:
- "taskanaRestUrl": empty string by default, if you have to change it, just modify with the corresponding REST api url.if taskanaRestUrl is empty string, web application will use the same machine where it's running as REST url, for instance if you are running the application at http://localhost:8080 the requests will point to http://localhost:8080/v1/...
- "taskanaLogoutUrl": empty string by default, if you have to change it, just modify with the corresponding REST api url. This property should point to the logout url desired.
Build taskana -rest project
Code Block language bash title path: /taskana/rest ./mvnw clean install -f rest
- Run taskana-rest-spring-example-boot
Code Block language bash title path: /taskana rest./
javamvnw spring-jarboot:run taskana-rest-spring-example-boot/target/-pl :taskana-rest-spring-example-boot.jar
Run taskana-rest-spring-example [Developer mode] without Login screen, user is: admin/admin
- Run web application in developer mode
Code Block language bash title path: /taskana/web ng serve
- Modify ./rest\taskana-rest-spring-example-boot\src\main\resources\application.properties devMode=true
- Build taskana-rest-spring-example-boot
Code Block language bash title path: /taskana/rest ./mvnw clean install -fpl :taskana-rest-spring-example-boot -am
Run taskana-rest-spring-example example-boot
Code Block language bash title path: /taskana/rest ./mvnw spring-boot:run -pl :taskana-rest-spring-example-boot
Before creating a Pull request
...