In order to install a module, we provide two different ways:
- Install from download
- Install from source code
The easiest way of integrating a already pusblished module to your existing Cognigy.AI project, is to download the released ready-to-use ZIP file:
- Download the module you'd like to install from our Releases page.
- Upload the zipped module into your Cognigy.AI installation through the Cognigy Integration Framework manager.
The other way is to build the module on your own. All modules in this repository are provided as TypeScript source code which can be transpiled to JavaScript. In order to use them in your Cognigy.AI installation, you need to perform the following steps:
- Clone the repository
- Navigate to a module folder (e.g. modules/salesforce), run
npm install
to install dependencies andtsc
to transpile the module from TypeScript to JavaScript - If the build process didn't zipped the files already, zip the root of the module and the /build folder
zip module-name.zip build/* icon.png icon-large.png README.md package.json package-lock.json
- Upload the zipped module into your Cognigy.AI installation through the Cognigy Integration Framework manager.