Custom js and css in Camunda Run

Hi all,
First of all, i’m pretty new to Camunda. What i want to do is to customize the css of Tasklist and add some javascript in an embedded form. I only found how to do it when using Camunda with a server like tomcat, but i’m not able to find instructions for Camunda Run.

From the documentation here (Camunda Platform Run | docs.camunda.org) this is the structure of Camunda Run where do i place my custom css and js?. Also how to i implement custom JS for an embedded form?

camunda-bpm-run
├── configuration/
│   ├── keystore/
│   │   └── put your SSL key store here if you want to use HTTPS
│   ├── resources/
│   │   └── put your BPMN files, forms and scripts here
│   ├── sql/
│   │   └── necessary SQL scripts to prepare your database system
│   ├── userlib/
│   │   └── put your database driver jar here
│   ├── default.yml
│   └── production.yml
├── internal/
├── start.bat
└── start.sh

Thank you.

Hello @ndziePatrickJoel ,

you speak about 2 different use cases here:

  1. Using custom CSS. For this, we have a pluggable frontend that can be extended.
  1. Using custom JS in an embedded form: Please use the Script mechanics the embedded form provides to get your Embedded form running and deploy it together with your process model via API.

https://docs.camunda.org/manual/7.15/reference/forms/embedded-forms/

Hope this helps

Jonathan