Document not found (404)
-This URL is invalid, sorry. Please use the navigation bar or search to continue.
- -diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 3250cd8..346bd24 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -9,7 +9,7 @@ jobs: deploy_site: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup mdBook uses: peaceiris/actions-mdbook@v1 diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index f173110..0000000 --- a/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -This file makes sure that Github Pages doesn't process mdBook's output. diff --git a/docs/404.html b/docs/404.html deleted file mode 100644 index d372ad2..0000000 --- a/docs/404.html +++ /dev/null @@ -1,185 +0,0 @@ - - -
- - -This URL is invalid, sorry. Please use the navigation bar or search to continue.
- -- -
-roc is a tool that wants to help you to develop ROS2 applications faster and easier. It is a collection of tools that are used to generate code, build and test your ROS2 applications. It is based on the ROS2 CLI.
-- -
-roc aims to be a tool that will completely be written in RUST and at some point not relay on the ROS2 CLI anymore. This will allow us to have a tool that is faster and more reliable. It will also allow us to have a tool that can be used on other platforms like Windows.
-roc frame
to work with tf frames, cordination systems and transformationsroc bridge
to bridge topics between different ROS2 instancesYou will need to add the ROS 2 apt repository to your system. -First ensure that the Ubuntu Universe repository is enabled.
-sudo apt install software-properties-common
-sudo add-apt-repository universe
-
-Now add the ROS 2 GPG key with apt.
-sudo apt update && sudo apt install curl -y
-sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg
-
-Then add the repository to your sources list.
-echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(. /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null
-
-Update your apt repository caches after setting up the repositories.
-sudo apt update
-
-ROS 2 packages are built on frequently updated Ubuntu systems. It is always recommended that you ensure your system is up to date before installing new packages.
-sudo apt upgrade
-
-sudo apt install ros-humble-desktop
-
-sudo apt install ros-humble-ros-base
-
-sudo apt install ros-humble-rmw*
-
-sudo apt install ros-dev-tools
-
-sudo apt install ros-humble-foxglove*
-sudo apt install ros-humble-rosbridge*
-
-sudo apt install ros-humble-tf2*
-su
-
-cargo install rocc
-
-git clone
-cd rocc
-cargo install --path .
-
-
- - -
-roc is a tool that wants to help you to develop ROS2 applications faster and easier. It is a collection of tools that are used to generate code, build and test your ROS2 applications. It is based on the ROS2 CLI.
-- -
-roc aims to be a tool that will completely be written in RUST and at some point not relay on the ROS2 CLI anymore. This will allow us to have a tool that is faster and more reliable. It will also allow us to have a tool that can be used on other platforms like Windows.
-roc frame
to work with tf frames, cordination systems and transformationsroc bridge
to bridge topics between different ROS2 instances