Categories:
Install global use cases
Guidelines for the installation of Aura global use cases
Introduction
If you are interested in taking advantage of an Aura global use case, already developed by Aura Platform Team, follow these instructions for its installation.
Installation of global use cases
To install the global use cases, use the following command:
npm run local-dependencies:install
This command will add the dependencies of the global use case libraries in both the package.json and the plugin-config.json file and install them into the project.
In order to install the versions needed, please update the following file local-dependencies/libraries-list.json and set the corresponding versions of your libraries.
⚠️ Remember to add a new profile if checking a new version of the libraries. For instance:
To test aura-platform version killets:
[
{
"profile": "release/killers",
"description": "Use cases delivered in The Killets",
"disttags": [
"devkillers"
],
"libraries": [
{ "name": "@telefonica/aura-bot-alfred-library" },
{ "name": "@telefonica/aura-bot-bill-library" },
{ "name": "@telefonica/aura-bot-cognitive-library" },
{ "name": "@telefonica/aura-bot-common-library" },
{ "name": "@telefonica/aura-bot-disambiguation-library" },
{ "name": "@telefonica/aura-bot-generic-library" },
{ "name": "@telefonica/aura-bot-handover-library" },
{ "name": "@telefonica/aura-bot-issues-library" },
{ "name": "@telefonica/aura-bot-linking-library" },
{ "name": "@telefonica/aura-bot-miscellaneous-library" },
{ "name": "@telefonica/aura-bot-none-library" },
{ "name": "@telefonica/aura-bot-onboarding-library" },
{ "name": "@telefonica/aura-bot-recommender-library" },
{ "name": "@telefonica/aura-bot-services-library" },
{ "name": "@telefonica/aura-bot-tv-library" },
{ "name": "@telefonica/aura-bot-wakeup-library" },
{ "name": "@telefonica/aura-bot-wifi-library" }
]
}
]
Uninstallation of global use cases
To uninstall the global use cases, use the following command:
npm run local-dependencies:uninstall
This command will uninstall all the dependencies of the global libraries you have previously installed, it will also clear the file package.json and plugin-config.json.
Installation of dialogs in Aura minibot
Yo can see how to install new dialogs here