Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"extensions": [
"ms-vscode.cpptools-extension-pack@1.3.0",
"spmeesseman.vscode-taskexplorer@2.9.1",
"paulvarache.vscode-taskfile"
"paulvarache.vscode-taskfile",
"vsls-contrib.codetour"
]
}
},
Expand Down
19 changes: 19 additions & 0 deletions .tours/building-and-running-the-first-ebcl-image.tour
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://aka.ms/codetour-schema",
"title": "Building and running the first EBcL image",
"steps": [
{
"directory": "images",
"description": "Image descriptions are located in directory \"images\". There are descriptions for amd64 and arm64 architectures."
},
{
"directory": "images/arm64/qemu/noble",
"description": "Here we have an image description for Ubuntu Noble Qemu arm64."
},
{
"file": "images/arm64/qemu/noble/Taskfile.yml",
"description": "The images are build and run using task files (https://taskfile.dev/). The tasks can be run using integrated terminal. For example this task defines a task \"run_qemu\" which builds the qemu image and then runs it in integrated terminal.\nYou can build and run your first image by clicking the link below: \n\n>> cd /workspace/images/arm64/qemu/noble && task run_qemu\n\nNote: Ending the tour will close the terminal!",
"line": 1
}
]
}