Goals

This site is designed to provide a showcase for robots using ROS.

Who can contribute?

Anyone can contribute to the site. However, it is expected that the majority of contributors will be the robot manufacturers or ROS integration maintainers.

What content should be on the site?

This site is designed to be a portal for discovery and comparison of robots with publicly documented ROS interfaces.

Developer documentation should remain on the ROS wiki, usually ‘http://wiki.ros.org/Robots/RobotName’. Where RobotName is substituted for your robot’s name.

Pages on this site should not be the primary reference for a robot. It should have its own website with the majority of its marketing and promotional content.

Robots may be promoted to the spotlight on the home page. To inquire about being promoted please contact business@osrfoundation.org .

How to contribute

Please open a pull request on github to add a robot or make an update to the site.

Documentation on how the site is setup can be found below.

Guidelines for contributions

Procedure for adding a new robot.

You will need to create a new post. There’s a script add_robot.py which will fill in a template by prompting you.

Prerequistes

‘sudo apt install python3-empy’ or pip3 install empy

Procedure

  1. Fork this repository on GitHub
  2. Checkout your fork.
  3. Create a new branch with your robot’s name.
  4. In the repository run python3 add_robot.py and follow the prompts.
  5. Add the icons and images into the directories as guided by the script. Icons should be 80x80px, Images at least 600px
  6. Fill in additional details in the generated post.
  7. Commit the changes with a descriptive commit message.
  8. Push the branch back to your fork.
  9. Open a pull request for review.

Local Testing

There is a script to run this site locally inside docker.

Prerequiste

To make use of this you must have docker installed.

Steps

  1. python3 -m venv ~/ghrocker_venv

  2. . ~/ghrocker_venv/bin/activate

  3. pip install ghrocker

  4. Run ./test_site.bash

  5. You can then open http://localhost:4000 in your browser to view the site. The page in the browser will automatically refresh when files are changed.

Notes: The ghrocker must be restarted if _config.yml is changed. Kill the script with Ctrl-C the test_site.bash and rerun it. Then reload the page in your browser.

About the backend

This site is based on the Cards Jekyll Template more information is in the orig.contributing.md.