This repository is part of Apache OpenWhisk and provides developer tools that help with local development, testing and operation of OpenWhisk.
- 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.
Each tool in this repository has to provide travis build scripts inside a .travis
folder.
The folder should define 2 scripts:
setup.sh
- invoked duringbefore_install
phasebuild.sh
- invokes duringscript
phase
For an example check out docker-compose/.travis folder.