Fixed Invoker configuration (#18)

* Fixed Invoker configuration
* Invoker was failing to start as it was referencing to incorrect property name “WHISK_API_HOST”.
* Changed it to correct property name “WHISK_API_HOST_NAME”.
1 file changed
tree: 4e6d71efe15f49876b13aa7a9ce4ce3f3a27e14f
  1. docker-compose/
  2. .gitignore
  3. .travis.yml
  4. CONTRIBUTING.md
  5. LICENSE.txt
  6. README.md
README.md

Developer tools for OpenWhisk

Installing OpenWhisk

  • Using Docker-Compose. See the README for more details.

    Build Status

    cd docker-compose
    make quick-start
    

    This is useful for creating local development environments. The build downloads by default the latest code from the master branch, but it also allows developers to work with their local clones by providing the local path to the OpenWhisk repo:

    PROJECT_HOME=/path/to/openwhisk make quick-start
    

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.