diff --git a/README.md b/README.md
index ea455884585377658e927bc4a96a7607447235e5..7151d3db617bee2276174d4fb76bc32cad1b4234 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 # First time cloning on gitlab.surrey.ac.uk
 
 1. Generate your own SSH keys:
-`ssh-keygen -t ed25519`
+   `ssh-keygen -t ed25519`
 2. Add your SSH key to Gitlab (for MacOS): `tr -d '\n' < ~/.ssh/id_ed25519.pub | pbcopy`
 3. Go to Gitlab, On the top bar, in the top right corner, select your avatar, On the left sidebar, select SSH Keys. In the Key box, paste the contents of your public key.
 
@@ -17,9 +17,22 @@ Alternatively, visit this [link](https://docs.gitlab.com/ee/ssh/) for clearer in
 3. Go to the front-end directory with `cd ../front-end`
 4. Run `npm install`
 5. Run the front-end with `npm start`
-6. Open two new terminals  
+6. Open two new terminals
 7. For the first terminal go into the authentication dir with `cd server/authentication` and run `npm install` then `npm start`
 8. For the second terminal go into the posts dir with `cd server/posts` and run `npm install` then `npm start`
 
+# How to run docker components
 
+To run run the docker components, run `docker-compose up`.
 
+# How to run the app locally
+
+1. To run the app locally, navigate to the `front-end` directory,
+   run `npm install` then run `npm start`.
+2. On a new terminal, navigate to `server/authentication` and run
+   run `npm install` then run `npm start`.
+3. On a new terminal, navigate to `server/societies` and run
+   run `npm install` then run `npm start`.
+4. On a new terminal, navigate to `server/posts` and run
+   run `npm install` then run `npm start`.
+5. Then navigate to http://localhost:3000
diff --git a/front-end/README.md b/front-end/README.md
index 81eab84a98edeb2e6d4721cb2291be6bd84c441a..58beeaccd87e230076cab531b8f418f40b6d1aeb 100644
--- a/front-end/README.md
+++ b/front-end/README.md
@@ -68,17 +68,3 @@ This section has moved here: [https://facebook.github.io/create-react-app/docs/d
 ### `npm run build` fails to minify
 
 This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
-
-# How to run docker components
-To run run the docker components, run `docker-compose up`.
-
-# How to run the app locally
-1. To run the app locally, navigate to the `front-end` directory,
-run `npm install` then run `npm start`.
-2. On a new terminal, navigate to `server/authentication` and run 
-run `npm install` then run `npm start`.
-3. On a new terminal, navigate to `server/societies` and run 
-run `npm install` then run `npm start`.
-4. On a new terminal, navigate to `server/posts` and run 
-run `npm install` then run `npm start`. 
-5. Then navigate to http://localhost:3000
\ No newline at end of file