https://github.com/apache/openwhisk-devtools
Development tools for building and deploying Apache OpenWhisk
https://github.com/apache/openwhisk-devtools
apache deployment faas functions functions-as-a-service openwhisk serverless serverless-functions tooling
Last synced: 3 months ago
JSON representation
Development tools for building and deploying Apache OpenWhisk
- Host: GitHub
- URL: https://github.com/apache/openwhisk-devtools
- Owner: apache
- License: apache-2.0
- Created: 2016-11-01T17:41:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-24T15:29:18.000Z (9 months ago)
- Last Synced: 2025-04-02T02:07:05.724Z (3 months ago)
- Topics: apache, deployment, faas, functions, functions-as-a-service, openwhisk, serverless, serverless-functions, tooling
- Language: JavaScript
- Homepage: https://openwhisk.apache.org/
- Size: 72.4 MB
- Stars: 179
- Watchers: 42
- Forks: 126
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Developer tools for OpenWhisk
[](http://www.apache.org/licenses/LICENSE-2.0)
[](https://travis-ci.org/apache/openwhisk-devtools)This repository is part of [Apache OpenWhisk](http://openwhisk.apache.org/) and provides developer tools that help with local development, testing and operation of OpenWhisk.
## Subprojects
* [docker-compose](docker-compose/README.md) allows testing OpenWhisk locally, using Docker Compose. This is ideal if you are contributing to core development
* [java-action-archetype](java-action-archetype/README.md) This archetype helps to generate the Java Action template project.
* [node-local](node-local/README.md) 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.
* [maven-java](maven-java/README.md) allows testing OpenWhisk Java Actions. This shows how to package the function dependencies e.g. external jar.
* [knative-build](knative-build/README.md) contains Knative Build Templates along with modified versions of their respective OpenWhisk Action Runtimes that can be used to Build and Serve Knative compatible applications on Kubernetes.
* [actionloop-starter-kit](actionloop-starter-kit/README.md) contains a starter kit to build a new runtime using the ActionLoop proxy used in Go, Swift, PHP, Python and Rust runtimes.## 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` phaseFor an example check out [docker-compose/.travis](docker-compose/.travis) folder.