Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • "taskanaRestUrl": property is "https://taskana-rest.mybluemix.net" by default, if you need have to change it, just modify: taskana\web\src\environments\data-sources\environment-information.json file 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/...
  • Run web application in developer mode


    Code Block
    languagebash
    titlepath: /taskana/web
     ng serve


  • Modify ./rest/taskana-rest-spring-example/src/main/resources/application.properties  devMode=true
  • Build taskana-rest-spring-example


    Code Block
    languagebash
    titlepath: /taskana/rest
     mvn clean install


  • Run taskana-rest-spring-example 

    Code Block
    languagebash
    titlepath: /taskana/rest
     mvn spring-boot:run


...