Versions Compared

Key

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

Build & run

...

  1. Build taskana-web application in production mode 


    Code Block
    languagebash
    titlepath: /taskana/web
     npmnpm run build:prod


  2. Build taskana-web dependency

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


  3. 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.
  4. Build taskana-rest project

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


  5. Run taskana-rest-spring-example


    Code Block
    languagebash
    titlepath: /taskana/rest
     java -jar taskana-rest-spring-example-boot/target/taskana-rest-spring-example-$Version-SNAPSHOTboot.jar 


Run taskana-rest-spring-example [Developer mode] without Login screen, user is: admin/admin

  1. Run web application in developer mode


    Code Block
    languagebash
    titlepath: /taskana/web
     ngng serve


  2. Modify ./rest\taskana-rest-spring-example-boot\src\main\resources\application.properties  devMode=true
  3. Build taskana-rest-spring-example


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


  4. Run taskana-rest-spring-example 

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


Before creating a Pull request

  • Taskana web application runs Jslint, tests and production bundling before deployment, to make sure that your code is 100% functional run next commands before creating a PR.


    • Linting and create production code.

      Code Block
      languagebash
      titlepath: /taskana/web
       npmnpm run build:prod


    • Run linting

      Code Block
      languagebash
      titlepath: /taskana/web
      npm run lint


    • Run tests locally.

      Code Block
      languagebash
      titlepath: /taskana/web
       npmnpm run test


    • Run End-to-End tests. (Taskana needs to be running)

      Code Block
      languagebash
      titlepath: /taskana/web
      npm run e2e


...