Index: README.md
===================================================================
--- README.md	(revision 0af535a229d9792c1a9972ea16cb5848f9b2552e)
+++ README.md	(revision b4369c8a31feda036947e7a9e68bfc3b2fd87e5e)
@@ -3,14 +3,14 @@
 Firstly, create a .env file in the project's root directory and populate it like so:
 
-HOME_URL="http://localhost:3000"  
-POSTGRES_HOST="db"  
-POSTGRES_USER="postgres"  
-POSTGRES_PASSWORD="postgres"  
-POSTGRES_DB="postgres"  
+        HOME_URL="http://localhost:3000"  
+        POSTGRES_HOST="db"  
+        POSTGRES_USER="postgres"  
+        POSTGRES_PASSWORD="postgres"  
+        POSTGRES_DB="postgres"  
 
 
 Now, in your console, navigate to the project's root directory and run:
 
-docker-compose up
+        docker-compose up
 
 
@@ -18,13 +18,12 @@
 If you are configuring this project for the first time, do the following, in order to set up the database.
 
-Note: The containers should be running in the background! (previously started with docker-compose up)
+-- Note: The containers should be running in the background! (previously started with docker-compose up)
 
 Open another console and run:
 
-docker exec -it name_of_db_container /bin/bash  
-psql -U postgres postgres `<` /usr/local/app/dummy_database.sql  
+        docker exec -it name_of_db_container /bin/bash  
+        psql -U postgres postgres `<` /usr/local/app/dummy_database.sql  
 
-(When inserting `<`, it should not be surrounded by quotation marks)
-
+-- Note: When inserting `<`, it should not be surrounded by quotation marks
 ===========================================================================
 
