{"id":14988415,"url":"https://github.com/apache/openwhisk-devtools","last_synced_at":"2025-09-11T01:46:16.995Z","repository":{"id":12692338,"uuid":"72560759","full_name":"apache/openwhisk-devtools","owner":"apache","description":"Development tools for building and deploying Apache OpenWhisk","archived":false,"fork":false,"pushed_at":"2024-09-24T15:29:18.000Z","size":75918,"stargazers_count":180,"open_issues_count":35,"forks_count":128,"subscribers_count":42,"default_branch":"master","last_synced_at":"2025-09-04T00:47:17.982Z","etag":null,"topics":["apache","deployment","faas","functions","functions-as-a-service","openwhisk","serverless","serverless-functions","tooling"],"latest_commit_sha":null,"homepage":"https://openwhisk.apache.org/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apache.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-11-01T17:41:18.000Z","updated_at":"2025-07-02T20:52:39.000Z","dependencies_parsed_at":"2024-12-08T07:03:56.907Z","dependency_job_id":"b39906b5-3471-4862-b730-dba5b8c1ecab","html_url":"https://github.com/apache/openwhisk-devtools","commit_stats":{"total_commits":187,"total_committers":50,"mean_commits":3.74,"dds":0.8609625668449198,"last_synced_commit":"54734862af8e58276341963b8bc51123098453d1"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/apache/openwhisk-devtools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fopenwhisk-devtools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fopenwhisk-devtools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fopenwhisk-devtools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fopenwhisk-devtools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/openwhisk-devtools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fopenwhisk-devtools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274562504,"owners_count":25308387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-10T02:00:12.551Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache","deployment","faas","functions","functions-as-a-service","openwhisk","serverless","serverless-functions","tooling"],"created_at":"2024-09-24T14:16:40.538Z","updated_at":"2025-09-11T01:46:16.961Z","avatar_url":"https://github.com/apache.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\n#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n--\u003e\n\n# Developer tools for OpenWhisk\n\n[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n[![Build Status](https://travis-ci.org/apache/openwhisk-devtools.svg?branch=master)](https://travis-ci.org/apache/openwhisk-devtools)\n\nThis repository is part of [Apache OpenWhisk](http://openwhisk.apache.org/) and provides developer tools that help with local development, testing and operation of OpenWhisk.\n\n## Subprojects\n\n* [docker-compose](docker-compose/README.md) allows testing OpenWhisk locally, using Docker Compose. This is ideal if you are contributing to core development\n* [java-action-archetype](java-action-archetype/README.md) This archetype helps to generate the Java Action template project.\n* [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.\n* [maven-java](maven-java/README.md) allows testing OpenWhisk Java Actions. This shows how to package the function dependencies e.g. external jar.\n* [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.\n* [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.\n\n## Travis builds\n\nEach tool in this repository has to provide travis build scripts inside a `.travis` folder.\nThe folder should define 2 scripts:\n* `setup.sh` - invoked during `before_install` phase\n* `build.sh` - invokes during `script` phase\n\nFor an example check out [docker-compose/.travis](docker-compose/.travis) folder.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fopenwhisk-devtools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fopenwhisk-devtools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fopenwhisk-devtools/lists"}