diff --git a/README.md b/README.md
index e230e8be2..55d09727a 100644
--- a/README.md
+++ b/README.md
@@ -29,16 +29,20 @@ Examples:
 
 - you want to develop using real api instead of mocked: use this `.env.local` file
 
+```
 	# .env.local
 	REACT_APP_USE_MOCK_API=
+```
 
 then `npm start`
 
 - you want to connect your local dev environment to docker api:
 
+```
 	# .env.local
 	REACT_APP_USE_MOCK_API=
 	REACT_APP_BASE_PATH=http://localhost:8080/oh-api
+```
 
 then `docker-compose up database backend && npm start`