...
- Build taskana-web application in production mode → npm run mode
(./taskana/web/)Code Block language bash npm run build:prod
Build taskana-web dependency
→ mvn clean install (./taskana/web/)Code Block language bash mvn clean install
- Modify taskana\rest\taskana-rest-spring-example\src\main\resources\static\environments\data-sources\environment-information.json file taskanaRestUrl property to "http://localhost:8080", depending on your port number.
Build taskana-rest
project → mvn clean installproject (./taskana/rest/)
Code Block language bash title /taskana/rest mvn clean install
- Run taskana-rest-spring-example → java -jar taskana-rest-spring-example/target/taskana-rest-spring-example-$Version-SNAPSHOT.jar (./taskana/rest/)
- If you need to debug taskana-rest-spring-example it's needed to copy manually ("./taskana\web\dist" folder to "./rest/taskana-rest-spring-example/target/classes/static")
...