-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!!" |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |