Suitecrm call Module Builder through shell script

195 views Asked by At

I am kind of new to SuiteCRM; I want to install a module through Module Builder.

Essentially I want to call the method that executes when deploy button is hit in SuiteCRM Module Builder. I am uploading my package through git and want to automate the process of deploy which can be triggered by a shell script.

1

There are 1 answers

0
Daniel Samson On BEST ANSWER

If you create a custom entrypoint, you use curl in script to call the entrypoint.

In the entrypoint you would need to include the classes used in modules/ModuleBuilder/MB to deploy the module.

The rest of the implementation is up to you.