Skip to content
Snippets Groups Projects
Commit 62957b5f authored by Malte Matthey's avatar Malte Matthey
Browse files

Add initial Getting Started README and enable Markdown preview mode by default in devcontainer

parent d2093d1b
Branches
No related tags found
No related merge requests found
......@@ -6,18 +6,6 @@
"service": "roscontainer",
"workspaceFolder": "/catkin_ws/src/learn_environment/tasks",
"forwardPorts": [6080],
"extensions": [
"yhpnoraa.beauty",
"magicstack.magicpython",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"donjayamanne.python-extension-pack",
"ms-iot.vscode-ros",
"ms-vscode.cmake-tools",
"ms-python.python",
"-ms-toolsai.vscode-jupyter-cell-tags"
],
"features": {
"git": "latest",
......@@ -27,5 +15,29 @@
"webPort": "6080",
"vncPort": "5901"
}
},
"customizations": {
"vscode": {
"settings": {
"workbench.editorAssociations": {
"*.md": "vscode.markdown.preview.editor"
}
},
"extensions": [
"yhpnoraa.beauty",
"magicstack.magicpython",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"donjayamanne.python-extension-pack",
"ms-iot.vscode-ros",
"ms-vscode.cmake-tools",
"ms-python.python",
// remove to not show cell tags in editor
"-ms-toolsai.vscode-jupyter-cell-tags"
]
}
}
}
# Welcome to the Tutorial
To get started, follow these steps:
1. **Open a Terminal in VS Code**
Go to `Terminal` > `New Terminal` in the VS Code menu. The shortcut is ``Ctrl + ` ``
2. **Execute the Launch Command**
Type the following command into the terminal and press Enter:
```bash
roslaunch learn_environment tutorial_gazebo.launch
```
3. **Begin with the Tasks**
- After running the command, the task files for the tutorial will be copied into this folder.
- All tasks are Jupyter Notebooks. Some code is already provided in the notebook; your task is to replace the `throw notImplementedError()` with your own code.
- **IMPORTANT**: Do not execute these notebooks directly from VS Code. This may result in unwanted behavior and won't trigger the evaluation. Use the `start` button in the plugin.
Familiarize yourself with RViz and start working on the tasks at your own pace!
## FAQ:
TODO
## How to use the plugin:
TODO
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment