openwhisk-cli
Apache OpenWhisk Command Line Interface (CLI)
File Explorer
Download Latest Version (.zip)- action.go
- action_test.go
- activation.go
- api.go
- commands.go
- commands_suite_test.go
- flags.go
- messages.go
- namespace.go
- package.go
- project.go
- property.go
- qualified_name.go
- rule.go
- sdk.go
- shared.go
- trigger.go
- trigger_test.go
- util.go
- util_test.go
- wsk.go
- gradle-wrapper.jar
- gradle-wrapper.properties
- docker.gradle
- empty.js
- hello.js
- invalidInput1.json
- invalidInput2.json
- invalidInput3.json
- invalidInput4.json
- malformed.js
- utils.go
- wsk.go
- command_test.go
- dummy.go
- integration_test.go
- application.conf
- ApiGwCliEndToEndTests.scala
- ApiGwCliRoutemgmtActionTests.scala
- ApiGwCliBasicTests.scala
- ApiGwCliTests.scala
- WskApiGwTests.scala
- WskCliActionSequenceTests.scala
- WskCliBasicUsageTests.scala
- WskCliEntitlementTests.scala
- WskCliWebActionsTests.scala
- WskConfigTests.scala
- HttpProxy.scala
- WskCliActionTests.scala
- WskCliActivationTests.scala
- WskCliBasicTests.scala
- WskCliConsoleTests.scala
- WskCliPackageTests.scala
- WskCliRuleTests.scala
- WskCliSequenceTests.scala
- WskSdkTests.scala
- build.gradle
- pre-commit-gofmt.sh
- test_openwhisk.sh
- de_DE.all.json
- en_US.all.json
- es_ES.all.json
- fr_FR.all.json
- it_IT.all.json
- ja_JA.all.json
- ko_KR.all.json
- pt_BR.all.json
- zh_Hans.all.json
- zh_Hant.all.json
- detection.go
- i18n.go
- .asf.yaml
- .gitignore
- .scalafmt.conf
- .travis.yml
- build.gradle
- CHANGELOG.md
- CONTRIBUTING.md
- go.mod
- go.sum
- gradle.properties
- gradlew
- gradlew.bat
- LICENSE.txt
- main.go
- NOTICE.txt
- README.md
- settings.gradle
# Installation Guide
1. Get the code
git clone https://github.com/apache/openwhisk-cli
Downloads the entire project code from GitHub to your computer.
cd openwhisk-cli
Moves into the project folder you just downloaded.
2. Gradle (Java/Kotlin)
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java/Kotlin projects.
- Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
./gradlew goBuild
Builds the project using Gradle.
./gradlew tasks
Builds the project using Gradle.
$ ./gradlew buildDarwinAmd64
Builds the project using Gradle.
gradle -version
Builds the project using Gradle.
$ ./gradlew goTest -PgoTags=unit
Builds the project using Gradle.
A BUILD SUCCESSFUL message means it worked. The output is created under build/.
Pulled directly from this repo's README.
3. Go
MediumPrerequisites
$ go build -o wsk
Compiles the Go program into an executable.
$ GOOS=linux GOARCH=amd64 go build -o wsk
Compiles the Go program into an executable.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
