From a7fe2418d3bff76dd2c0fba43970a61cfd63964e Mon Sep 17 00:00:00 2001
From: Sergi Foix <sfoix@iri.upc.edu>
Date: Mon, 19 Dec 2016 13:22:53 +0100
Subject: [PATCH] Adding instructions and minimal rosinstall file

---
 README.md                 | 37 +++++++++++++++++++++++++++++++++++++
 idress-minimal.rosinstall |  5 +++++
 2 files changed, 42 insertions(+)
 create mode 100644 idress-minimal.rosinstall

diff --git a/README.md b/README.md
index e69de29..3773ba3 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,37 @@
+# I-Dress Code Intallation steps
+
+## Catkin workspace
+
+Although it is not necessary, we recommend to create a new ROS workspace to keep the I-Dress code in a clean structure. [ROS tutorial] (http://wiki.ros.org/catkin/Tutorials/create_a_workspace)
+
+Create folder path and initialize the workspace:
+
+```bash
+$ mkdir -p ~/idress_ws/src
+$ cd ~/idress_ws/src
+$ catkin_init_workspace
+
+```
+
+Compile it: 
+
+```bash
+$ cd ~/idress_ws/
+$ catkin_make
+```
+
+Overlay this workspace:
+
+```bash
+$ source devel/setup.bash
+```
+For permanently maintaining the overlay, source the setup.bash file at the end of ~/.bashrc
+
+## Configuring the needed GIT repositories into the workspace
+
+```bash
+$ cd ~/idress_ws/src
+$ wstool merge idress-minimal.rosinstall
+$ wstool update
+```
+
diff --git a/idress-minimal.rosinstall b/idress-minimal.rosinstall
new file mode 100644
index 0000000..dde5a53
--- /dev/null
+++ b/idress-minimal.rosinstall
@@ -0,0 +1,5 @@
+- git: {local-name: idress_common_msgs, uri: 'ssh://git@gitlab.iri.upc.edu:2202/idress/idress_common_msgs.git'}
+- git: {local-name: idress_user_perception, uri: 'ssh://git@gitlab.iri.upc.edu:2202/idress/idress_user_perception.git'}
+- git: {local-name: idress_speech_perception, uri: 'ssh://git@gitlab.iri.upc.edu:2202/idress/idress_speech_perception.git'}
+- git: {local-name: idress_shoe_perception, uri: 'ssh://git@gitlab.iri.upc.edu:2202/idress/idress_shoe_perception.git'}
+- git: {local-name: idress_force_perception, uri: 'ssh://git@gitlab.iri.upc.edu:2202/idress/idress_force_perception.git'}
-- 
GitLab