From e1e5d64fb67b5ead4bc9d527577028aef06ce68e Mon Sep 17 00:00:00 2001 From: Stefan Neuhaus Date: Wed, 21 Feb 2024 12:25:04 +0100 Subject: [PATCH 1/2] README: change intended location of .env file from project root to working directory of process --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e54075ee..7538de70 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Or installing with yarn? `yarn add dotenv` -Create a `.env` file in the root of your project: +Create a `.env` file in the working directory of your process: ```dosini S3_BUCKET="YOURS3BUCKET" From 58a436ba7f49008d385e086b1f86ba540f2bc48a Mon Sep 17 00:00:00 2001 From: Stefan Neuhaus Date: Thu, 22 Feb 2024 20:31:53 +0100 Subject: [PATCH 2/2] Update README.md Rework explanation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7538de70..a0787330 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Or installing with yarn? `yarn add dotenv` -Create a `.env` file in the working directory of your process: +Create a `.env` file in the root of your project (if using a monorepo structure like `apps/backend/app.js`, put it in the root of the folder where your `app.js` process runs): ```dosini S3_BUCKET="YOURS3BUCKET"