Skip to content

ibm-cloud-architecture/eda-tech-academy

Repository files navigation

Goals

The goals of this tutorial is to help tech sellers getting good knowledge of Event-driven solution based on IBM Event Streams, so they could develop quick proof of concepts around event streams solution.

The tutorial addresses the current overview of the knowledge to have and also reference other materials so you can learn more over time. Some material are still under improvement, all are open sourced so you can contribute too.

The overall tutorial should be around 4 hours.

Pre-requisites:

You can read the tutorial content using the BOOK VIEW

Clone this git repository

git clone  https://github.com/ibm-cloud-architecture/eda-tech-academy.git

Notes for contributors

Building this booklet locally

The content of this repository is written with markdown files, packaged with MkDocs and can be built into a book-readable format by MkDocs build processes.

  1. Install MkDocs locally following the official documentation instructions.
  2. Install Material plugin for mkdocs: pip install mkdocs-material
  3. mkdocs serve
  4. Go to http://127.0.0.1:8000/ in your browser.

Building this booklet locally but with docker

In some cases you might not want to alter your Python setup and rather go with a docker image instead. This requires docker is running locally on your computer though.

  • docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
  • Go to http://127.0.0.1:8000/ in your browser.

Pushing the book to GitHub Pages

  1. Run mkdocs gh-deploy from the root directory.