-
-
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.
docs: add index for 100 level learning path (#3)
- Loading branch information
Showing
2 changed files
with
43 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!!" |