From 5cfb6b7528ee40684b626a4e68d3f588713a2934 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Sat, 19 Sep 2020 13:49:51 +0530 Subject: [PATCH] Fixing the documentation for where the environment file is created (#583) --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3a0f32c209..4053f29964 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -118,10 +118,12 @@ This generates a bunch of classes required by IntelliJ for compiling the rest of 3. Create a copy of the `envs/dev.env.example` ```shell script - cp envs/dev.env.example envs/dev.env + cp envs/dev.env.example .env ``` -4. Modify the property values in the file `envs/dev.env` to point to your local running instance of MongoDB and Redis. +This command creates a `.env` file in the `app/server` folder. All run scripts pick up environment configuration from this file. + +4. Modify the property values in the file `.env` to point to your local running instance of MongoDB and Redis. 5. In order to create the final JAR for the Appsmith server, run the command: ```