Third Party App Optional Signing

Hi, we want to make our own plugin for internal use only.
We do not want to have the code signing thing and I read that it is not mandatory for third party app.
But I cannot find a way to bypass it, it is always looking for signature file.
Do you guys have any documentation how to make third party without signature ?

Thanks

Add the following to your config.php:

 'integrity.ignore.missing.app.signature' => 
  array (
    0 => 'your_app_name',
  ),

See also: Docs

5 Likes

Hi, thanks for your help. It did solve my issue. I was clearly not looking at the right place in the docs. (I was trying to do the NotePlugin example)

2 Likes