Skip to main content
The ASEE Flow Spring Boot application supports customization through configuration parameters in the application.yaml or application.properties file. The full list of supported configuration parameters can be found in the Spring Boot integration section of the User Guide.

Customize the configuration

Create an application.yaml file in the src/main/resources folder:
camunda.bpm:
  admin-user:
    id: demo
    password: demo
    firstName: Demo
  filter:
    create: All tasks
This configuration accomplishes two things:
  1. Creates an admin user named demo with the specified password and first name.
  2. Generates a default filter named All tasks for use in Tasklist.

Build and run

Rebuild the application with mvn clean followed by mvn install. When accessing http://localhost:8080/, the application prompts for login credentials rather than admin-user creation. Log in using the credentials demo / demo to access the ASEE Flow web applications. In Tasklist, you’ll observe the newly created All tasks filter, though it contains no tasks at this stage.
Catch up: get the sources of Step-2
git clone https://github.com/camunda/camunda-get-started-spring-boot.git
git checkout -f Step-2
Or download as a .zip.

Next step

Continue to model a process.