I want to setup apache openwhisk on-premise in my organization. so that we can use it internally within the org. i am not able to find much on the net on this. i tried cloning the code from git and building it in the windows. but it doesn't work. kindly help
Asked
Active
Viewed 1,116 times
2 Answers
1
Follow these steps to start the platform in a virtual machine in your local environment.
# Clone openwhisk git clone --depth=1 https://github.com/openwhisk/openwhisk.git # Change directory to tools/vagrant cd openwhisk/tools/vagrant # Run script to create vm and run hello action ./hello
If this works, you should see the following output.
wsk action invoke /whisk.system/utils/echo -p message hello --result { "message": "hello" }
If you encounter problems with these steps, please open an issue in the Github repository for the project.

James Thomas
- 4,303
- 1
- 20
- 26
-
I was thinking of not using the vagrant and doing a local build and install – Katiyman Apr 28 '17 at 11:38