[READ-ONLY] Mirror of https://github.com/shuuji3/katacoda-scenarios. Katacoda Scenarios www.katacoda.com/shuuji3
0

Configure Feed

Select the types of activity you want to include in your feed.

Hello World Sample Scenario

+60
+25
hello-world/README.md
··· 1 + # Katacoda Hello World 2 + This is an example repository. Starting building your own scenario by editing the files in this directory. Create additional scenarios by adding additional directories to the top level folder. 3 + 4 + 5 + ## index.json 6 + The file _index.json_ contains all the information about the scenario. It has the title, description and a heading for each step. 7 + 8 + The file also contains an imageid. This refers to the Katacoda environment. Here are some environment image IDs you may find useful: 9 + 10 + | **Environment** | **Image ID** | 11 + |------------------|---------------| 12 + | Docker | docker | 13 + | Kubernetes | kubernetes | 14 + | CoreOS | coreos | 15 + | Node.js v6 | node6 | 16 + | Go | go | 17 + | C# | c# | 18 + | Java | java8 | 19 + | Bash | bash | 20 + 21 + ## Pro Author Accounts 22 + Interested in metrics, private repositories and environments for classroom teaching? Update to become a Pro Author at https://katacoda.com/teach 23 + 24 + ## Interactive Developer Portals 25 + Want to take your scenarios to the next level? Visit https://katacoda.com/embed
+1
hello-world/finish.md
··· 1 + You've completed your first Katacoda scenario!
+26
hello-world/index.json
··· 1 + { 2 + "title": "Hello World Scenario", 3 + "description": "Your First Scenario", 4 + "difficulty": "beginner", 5 + "time": "2 minutes", 6 + "details": { 7 + "steps": [{ 8 + "title": "Step 1 - Run Command", 9 + "text": "step1.md" 10 + }], 11 + "intro": { 12 + "text": "intro.md", 13 + "credits": "" 14 + }, 15 + "finish": { 16 + "text": "finish.md" 17 + } 18 + }, 19 + "environment": { 20 + "uilayout": "terminal", 21 + "uimessage1": "\u001b[32mYour Interactive Bash Terminal.\r\nStart Kubernetes using `launch.sh`\u001b[m\r\n" 22 + }, 23 + "backend": { 24 + "imageid": "bash" 25 + } 26 + }
+1
hello-world/intro.md
··· 1 + Welcome to your first Katacoda Scenario!
+7
hello-world/step1.md
··· 1 + This is your first step. 2 + 3 + ## Task 4 + 5 + This is an _example_ of creating a scenario and running a **command** 6 + 7 + `echo 'Hello World'`{{execute}}