{"id":46300349,"url":"https://github.com/imixs/imixs-process-manager","last_synced_at":"2026-03-04T11:03:41.429Z","repository":{"id":75344726,"uuid":"275091628","full_name":"imixs/imixs-process-manager","owner":"imixs","description":"Imixs Business Process Manager ","archived":false,"fork":false,"pushed_at":"2025-11-21T11:46:08.000Z","size":19709,"stargazers_count":13,"open_issues_count":2,"forks_count":11,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-11-21T12:22:22.327Z","etag":null,"topics":["bpmn","bpmn-engine","business-process-management","worklfow"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imixs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-06-26T06:46:55.000Z","updated_at":"2025-11-21T11:46:14.000Z","dependencies_parsed_at":"2024-09-16T21:44:55.216Z","dependency_job_id":"ea6989e4-7fc4-43d5-99d9-478c0f82ab3d","html_url":"https://github.com/imixs/imixs-process-manager","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/imixs/imixs-process-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imixs%2Fimixs-process-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imixs%2Fimixs-process-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imixs%2Fimixs-process-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imixs%2Fimixs-process-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imixs","download_url":"https://codeload.github.com/imixs/imixs-process-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imixs%2Fimixs-process-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30078420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bpmn","bpmn-engine","business-process-management","worklfow"],"created_at":"2026-03-04T11:03:41.138Z","updated_at":"2026-03-04T11:03:41.419Z","avatar_url":"https://github.com/imixs.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Java CI with Maven](https://github.com/imixs/imixs-process-manager/actions/workflows/maven.yml/badge.svg)](https://github.com/imixs/imixs-process-manager/actions/workflows/maven.yml)\n[![Join a discussion](https://img.shields.io/badge/discuss-on%20github-4CB697)](https://github.com/imixs/imixs-workflow/discussions)\n\n# The Imixs Process Manager\n\nThe digitization of business processes has become a key challenge for modern application design.\nEssentially, you only need two things to do this.\n\n- a process description - which you ideally create using the BPMN 2.0 standard\n- a runtime environment - which allows you to execute and persist your process instances in a secure way\n\nThe Open Source project [Imixs-Workflow](http://www.imixs.org) provides you with an open and powerful workflow management platform that combines the design and the execution of business processes in a highly scalable and easy to use environment.\n\nWith the _Imixs Process Manager_ you can start quickly and develop and test your own business process. And of course you can customize and extend this platform and use it for development as well as for production.\n\n## How to Install\n\nThe _Imixs Process Manager_ comes with a Docker profile which enables you to start within seconds. If you haven't already installed Docker, follow the instructions [here](https://docs.docker.com/get-docker/).\n\nDownload the [docker-compose.yml](https://raw.githubusercontent.com/imixs/imixs-process-manager/master/docker-compose.yml) file...\n\n```yaml\nversion: \"3.6\"\nservices:\n  imixs-db:\n    image: postgres:13.11\n    environment:\n      POSTGRES_PASSWORD: adminadmin\n      POSTGRES_DB: workflow-db\n    volumes:\n      - dbdata:/var/lib/postgresql/data\n\n  imixs-app:\n    image: imixs/imixs-process-manager:latest\n    environment:\n      TZ: \"CET\"\n      LANG: \"en_US.UTF-8\"\n      JAVA_OPTS: \"-Dnashorn.args=--no-deprecation-warning\"\n      POSTGRES_USER: \"postgres\"\n      POSTGRES_PASSWORD: \"adminadmin\"\n      POSTGRES_CONNECTION: \"jdbc:postgresql://imixs-db/workflow-db\"\n    ports:\n      - \"8080:8080\"\n      - \"8787:8787\"\n      - \"9990:9990\"\nvolumes:\n  dbdata:\n```\n\n... and run\n\n    $ docker-compose up\n\nAfter a few seconds the Imixs Process Manager is up and running. You can access it from your web browser at: [http://localhost:8080/](http://localhost:8080/)\n\n\u003cimg src=\"./screen-002.png\" /\u003e\n\nYou can upload your own process model and create customized forms. You can view and search running process instances.\n\n\u003cimg src=\"./screen-001.png\" /\u003e\n\n## Authentication and Authorization\n\nImixs-Workflow is a human-centric workflow engine which means that each actor need to authenticate against the service to interact.\n\nThe _Imixs Process Manager_ provides a user and team management. The users are stored in a database and used for authentication.\nIf you first deploy the system the application will create a default user:\n\n| User  | Role                   | Password   |\n| ----- | ---------------------- | ---------- |\n| admin | IMIXS-WORKFLOW-Manager | adminadmin |\n\nFor testing you can create the following additional test accounts to see the different behavior :\n\n| User    | Role                   | Password |\n| ------- | ---------------------- | -------- |\n| alex    | IMIXS-WORKFLOW-Manager | password |\n| marty   | IMIXS-WORKFLOW-Author  | password |\n| melman  | IMIXS-WORKFLOW-Author  | password |\n| gloria  | IMIXS-WORKFLOW-Author  | password |\n| skipper | IMIXS-WORKFLOW-Reader  | password |\n\nYou will find more information about the security concept in the [Imixs-Workflow Deployent guide](https://www.imixs.org/doc/deployment/index.html).\n\n## Teams\n\nYou can group users to teams using the user/team management section.\n\n\u003cimg src=\"./screen-003.png\" /\u003e\n\nEach team supports the roles 'Manager', 'Team' and 'Assist'. These teams are solved by the Plugin class `org.imixs.marty.team.TeamPlugin` if a team reference is assigned to a workitem named `space.ref`. You can see the example in the BPMN model 'ticket.bpmn'\n\n## Process Design\n\nYou can define your own business process models using the [Imixs-BPMN modeller tool](https://www.imixs.org/doc/modelling/index.html) and you can upload and execute your models directly within Imixs Process Manager. General information about how to model can be found [here](https://www.imixs.org/doc/modelling/howto.html).\n\nThe Imixs Process Manager allows you to define custom forms for your business process without programming. By defining an XML template, you can store forms directly in a BPMN 2.0 model.\n\n\u003cimg src=\"https://raw.githubusercontent.com/imixs/imixs-process-manager/master/src/main/webapp/pages/model-example.png\" /\u003e\n\nExample:\n\n```xml\n\t\u003c?xml version=\"1.0\"?\u003e\n\t\u003cimixs-form\u003e\n\t  \u003cimixs-form-section label=\"Order\"\u003e\n\t    \u003citem name=\"_orderid\" type=\"text\" label=\"Order ID:\" /\u003e\n\t    \u003citem name=\"_orderdate\" type=\"date\" label=\"Order Date:\" /\u003e\n      \u003citem name=\"team\" type=\"custom\" path=\"team\"  label=\"Select a Team:\" /\u003e\n\t  \u003c/imixs-form-section\u003e\n\t\u003c/imixs-form\u003e\n```\n\nYou can create and change your models at runtime without interrupting your workflow instance.\n\n## Jakarta EE 10\n\n**Note:** Imixs-Workflow and the Imixs-Process-Manager are based on [Jakarta EE 10](https://jakarta.ee/). The project is currently developed based on [Wildfly version 27.0.0.Final](https://wildfly.org).\n\n## Build\n\nTo build the artifact from sources run:\n\n    $ mvn clean install\n\nTo build the new Docker Image run:\n\n    $ mvn clean install -Pdocker\n\nTo run Wildfly Server in debug mode (port 8787) you can build the Docker Image with:\n\n    $ mvn clean install -Pdebug\n\n### Run\n\nTo start the Imixs-Process Manger with docker-compose, run:\n\n    $ docker-compose -f docker-compose-dev.yaml up\n\n## Autodeploy \u0026 Hot Deploy\n\nWe use the [Manik Hot-Deploy Plugin](https://manik.imixs.org/) to auto deploy the application during development.\nTo update the deployment just run:\n\n    $ mvn install\n\nDuring development of Jakarta EE Faces you can run the autodeploy mode to update your Web Frontend autoamtically:\n\n    $ mvn manik-hotdeploy:hotdeploy\n\nIn this mode the Manik-Plugin will detect updates of the Web Frontend and updates your running applicaton.\n\n## Open Liberty\n\nTo run the application on the Open Liberty Application Server with Docker run:\n\n    $ mvn clean install -Pdocker-openliberty\n    $ docker-compose -f docker-compose-openliberty.yaml up\n\nThe application running on OpenLiberty is available from:\n\n    http://localhost:9080/\n\nYou can find the configuration details in the server section [OpenLiberty](/docker/configuration/openliberty/README.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimixs%2Fimixs-process-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimixs%2Fimixs-process-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimixs%2Fimixs-process-manager/lists"}