From 8f06d5d9f8a4a52b89c394680489a3bbc5f1055c Mon Sep 17 00:00:00 2001 From: mwithi Date: Tue, 10 Sep 2024 15:27:49 +0200 Subject: [PATCH] Fix indentation --- README.md | 4 ++++ 1 file changed, 4 insertions(+) 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`