From 8714368cbcb42a0a4960787a654958f08b0a62b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?rajib=E0=A6=B0=E0=A6=BE=E0=A6=9C=E0=A7=80=E0=A6=AC?= Date: Fri, 13 Oct 2023 11:12:32 +0700 Subject: [PATCH] chore: Update README regarding copying .env file (#475) --- .template/variants/web/.gitignore.rb | 3 +++ README.md.tt | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.template/variants/web/.gitignore.rb b/.template/variants/web/.gitignore.rb index b235fdae7..0615792bc 100644 --- a/.template/variants/web/.gitignore.rb +++ b/.template/variants/web/.gitignore.rb @@ -26,5 +26,8 @@ # Ignore Gemfile.lock file in engines. /engines/*/Gemfile.lock + + # Ignore env file + .env IGNORE end diff --git a/README.md.tt b/README.md.tt index 91e719fce..c0a291560 100644 --- a/README.md.tt +++ b/README.md.tt @@ -19,11 +19,17 @@ ### Development +Copy the contents of `.env.example` to `.env` + +```sh +cp .env.example .env +``` + Run the Rails app: ```sh make dev -`` +``` ## Testing