Add support for installing optional packages. (#83)

* Add support for installing optional packages.

Downloads, installs package actions and start provider containers for
Alarms, Kafka and Cloudant packages.

* Added docs to README for catalog and feed provider steps.

* Check for open ports before installing providers
3 files changed
tree: bfe0ca5b699fe89ead6601f693720b43fb53981c
  1. docker-compose/
  2. java-local/
  3. node-local/
  4. terraform-wskdeploy-plugin/
  5. tools/
  6. .gitignore
  7. .travis.yml
  8. CONTRIBUTING.md
  9. LICENSE.txt
  10. README.md
README.md

Developer tools for OpenWhisk

License Build Status

This repository is part of Apache OpenWhisk and provides developer tools that help with local development, testing and operation of OpenWhisk.

Subprojects

  • docker-compose allows testing OpenWhisk locally, using Docker Compose. This is ideal if you are contributing to core development
  • node-local allows testing individual OpenWhisk functions locally, using only node.js. This is ideal if you are writing node.js functions to run in OpenWhisk, but need to emulate some of OpenWhisk's behavior in creating params and expecting promises.

Travis builds

Each tool in this repository has to provide travis build scripts inside a .travis folder. The folder should define 2 scripts:

  • setup.sh - invoked during before_install phase
  • build.sh - invokes during script phase

For an example check out docker-compose/.travis folder.