Skip to content

Commit

Permalink
Merge branch 'master' into module-4
Browse files Browse the repository at this point in the history
  • Loading branch information
quetzalliwrites authored Feb 20, 2024
2 parents 52108b7 + c5fc0a5 commit af257ec
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
31 changes: 31 additions & 0 deletions 100-level-AsyncAPI-Intro/index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"title": "100 Level AsyncAPI Intro",
"description": "Introduction of AsyncAPI - 100 Level",
"details": {
"intro": {
"text": "intro.md",
"foreground": "setup_node.sh"
},
"steps": [
{
"title": "Event-Driven Architectures",
"text": "step1.md"
},
{
"title": "AsyncAPI Specification",
"text": "step2.md"
},
{
"title": "Creating and Validating AsyncAPI Code and Documents",
"text": "step3.md"
}
],
"finish": {
"text": "finish.md"
}
},
"backend": {
"imageid": "ubuntu"
}
}

12 changes: 12 additions & 0 deletions 100-level-AsyncAPI-Intro/setup_node.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

# Install necessary prerequisites
echo "We are going to install Nodejs and NPM first."
curl --silent -sL https://deb.nodesource.com/setup_current.x -o /tmp/nodesource_setup.sh
bash /tmp/nodesource_setup.sh
apt-get install -y -q nodejs

# Install AsyncAPI CLI
echo "Installing AsyncAPI CLI..."
npm install -g @asyncapi/[email protected]
echo "All set!!"
8 changes: 8 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file provides an overview of code owners in this repository.

# Each line is a file pattern followed by one or more owners.
# The last matching pattern has the most precedence.
# For more details, read the following article on GitHub: https://help.github.com/articles/about-codeowners/.

# The default owners are automatically added as reviewers when you open a pull request unless different owners are specified in the file.
@alequetzalli @asyncapi-bot-eve @Barbanio

0 comments on commit af257ec

Please sign in to comment.