/
Taskana Web Application

Taskana Web Application

Build & run

Run yarn on ./taskana/web directory

Run taskana-rest-spring-example [Standalone mode] with Login screen

  1. Install all dependencies
    path: /taskana/web

    yarn install

     

  2. Build taskana-web application in production mode 

    path: /taskana/web

    yarn build:prod
  3. Build taskana-web dependency

    path: /taskana

    ./mvnw clean install -pl :taskana-web
  4. 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.

  5. [Optional]: Modify ./rest\taskana-rest-spring-example-boot\src\main\resources\application.properties  enableCsrf=false if you're planning to use the REST Service without the Frontend. 

  6. Build taskana project

    path: /taskana

  7. Run taskana-rest-spring-example-boot

    [Optional]: You can add some (exemplary) SPI implementations into our demo app by activating the following profiles:

Profile

Dependency

Description

Profile

Dependency

Description

history.plugin

  • pro.taskana.history:taskana-simplehistory-rest-spring

simple history + REST Service for retrieving history events

historyLogging.plugin

  • pro.taskana.history:taskana-loghistory-provider

History events will be logged out

dmn-routing.plugin

  • pro.taskana:taskana-spi-routing-dmn-router

  • pro.taskana:taskana-routing-rest

DMN-TaskRouter Implementation + REST Service to upload DMN-Excel file

path: /taskana

 

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

  1. Run web application in developer mode



    path: /taskana/web



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

  3. Build taskana-rest-spring-example-boot



    path: /taskana



  4. Run taskana-rest-spring-example-boot

    path: /taskana



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.

      path: /taskana/web



    • Run linting

      path: /taskana/web



    • Run tests locally.

      path: /taskana/web



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

      path: /taskana/web



Related content

Database Configuration
Database Configuration
Read with this
UI configuration
UI configuration
More like this
Admin UI Configuration
Admin UI Configuration
More like this
Spring Boot configuration
Spring Boot configuration
More like this
TODO - Wildfly Application Server configuration
TODO - Wildfly Application Server configuration
More like this
TODO - Security Design
TODO - Security Design
More like this