diff --git a/README.md b/README.md
index 96eca80168e6eb2f558e12d0b776c973111a659f..8144c65e4813f9245a0d2b9c0baa360ff7756c46 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,15 @@
 ### Clone the repository
-git clone <repository link>
+git clone https://git.embl.de/yelmoubayed/new-dp-service.git    
 cd <repository>
 
 ### Create a virtual environment to isolate our package dependencies locally
-python3 -m venv env
-source env/bin/activate  # On Windows use `env\Scripts\activate`
+~~~
+python3 -m venv env 
+~~~
+
+~~~
+source env/bin/activate  # On Windows use `env\Scripts\activate`    
+~~~
 
 ### Install Django, Django REST framework and neomodel into the virtual environment
 ~~~