├── .asf.yaml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── bin ├── compose.js └── deploy.js ├── client.js ├── composer.js ├── conductor.js ├── docs ├── COMBINATORS.md ├── COMMANDS.md ├── COMPOSITIONS.md └── README.md ├── fqn.js ├── package.json ├── samples ├── demo.js └── demo.json ├── test ├── composer.js ├── conductor.js └── fqn.js └── travis ├── runtimes.json ├── scancode.sh └── setup.sh /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | openwhisk 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/README.md -------------------------------------------------------------------------------- /bin/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/bin/compose.js -------------------------------------------------------------------------------- /bin/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/bin/deploy.js -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/client.js -------------------------------------------------------------------------------- /composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/composer.js -------------------------------------------------------------------------------- /conductor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/conductor.js -------------------------------------------------------------------------------- /docs/COMBINATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/docs/COMBINATORS.md -------------------------------------------------------------------------------- /docs/COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/docs/COMMANDS.md -------------------------------------------------------------------------------- /docs/COMPOSITIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/docs/COMPOSITIONS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/docs/README.md -------------------------------------------------------------------------------- /fqn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/fqn.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/package.json -------------------------------------------------------------------------------- /samples/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/samples/demo.js -------------------------------------------------------------------------------- /samples/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/samples/demo.json -------------------------------------------------------------------------------- /test/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/test/composer.js -------------------------------------------------------------------------------- /test/conductor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/test/conductor.js -------------------------------------------------------------------------------- /test/fqn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/test/fqn.js -------------------------------------------------------------------------------- /travis/runtimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/travis/runtimes.json -------------------------------------------------------------------------------- /travis/scancode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/travis/scancode.sh -------------------------------------------------------------------------------- /travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-composer/HEAD/travis/setup.sh --------------------------------------------------------------------------------