Update events.md
1 file changed
tree: 927778fc0f9e49b3dafaf5e6fa965cd0ee7c3837
  1. _includes/
  2. _layouts/
  3. _scss/
  4. bin/
  5. css/
  6. docs/
  7. fonts/
  8. images/
  9. js/
  10. src/
  11. .babelrc
  12. .editorconfig
  13. .gitignore
  14. .jscsrc
  15. _config.yml
  16. about.md
  17. CNAME
  18. contact.md
  19. CONTRIBUTING.md
  20. contributors.md
  21. developers.md
  22. events.md
  23. faq.md
  24. Gemfile
  25. Gemfile.lock
  26. index.md
  27. integrations.md
  28. LICENSE.txt
  29. media.md
  30. package-creators.md
  31. package.json
  32. README.md
  33. rollup.config.js
  34. serverless.md
  35. social.md
  36. supporters.md
README.md

Apache OpenWhisk Website

License

Apache OpenWhisk is a cloud-first distributed event-based programming service. It provides a programming model to upload event handlers to a cloud service, and register the handlers to respond to various events.

Quickstart for Local Development

Install Prerequisites

# Verify Node and Node Package Manager are installed
node -v
npm -v

# Verify Ruby is installed
ruby env

# Install Jekyll, which is used to build the site
gem install jekyll bundler

Clone and start development server

# Clone the repository (and correct branch).
git clone https://github.com/openwhisk/openwhisk.github.io.git

# Move into the cloned repo.
cd openwhisk.github.io

# Install gem dependcies
bundle install

# Start the development server default location http://127.0.0.1:4000
bin/develop

How to Build Jekyll to Output Static Files

If you need to generate static files, run the following:

# NOTE: Make sure you have already cloned the repo and moved into the directory.

# Build the site.
bundle exec jekyll build

This will build static files to a directory called _site/ in the project root. This can be used for manual deployment to a static server or with build tools like Jenkins.

Troubleshooting

If you get an error ‘bundle: command not found’ attempting to build the site, you may need to manually install the ‘bundler’ package:

 gem install bundler

Issues

Report bugs, ask questions and request features here on GitHub.

You can also join our slack channel and chat with developers. To get access to our slack channel, please see the instructions here.

License

Licensed under the Apache License, Version 2.0 (the “License”).

Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an “as is” basis, without warranties or conditions of any kind, either express or implied. See the license for the specific language governing permissions and limitations under the license.