- Install Docker:
Make sure Docker is installed on your system. You can download it from https://www.docker.com. - Clone or Download the Project
- Run the Service:
In the directory containingdocker-compose.yml, run:This command ensures you’re running the latest version of your app by rebuilding the Docker images before launching the containers. It’s useful when you’ve made changes to the source code or Dockerfile and want to see the updated behavior immediately.docker compose up --build
- Access the UI: Open your browser and navigate to: http://127.0.0.1:6660
| Argument | Default | Description |
|---|---|---|
--simthreshold |
0.9 | Sets the similarity threshold for grouping resources and generating timetables. A higher value means stricter matching, grouping only very similar resources. |
--eta |
0.01 | Controls the sensitivity of the Split Miner algorithm to rare process behavior. Lower values allow detecting less frequent events or paths, while higher values focus on more common behaviors. |
--eps |
0.001 | Determines how strictly the Split Miner algorithm identifies parallel tasks. Smaller values can reveal more parallel activities; larger values tend to group them as sequential. |