From 350eeae8dafc07bf98ffc38b29630c575929561e Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Mon, 13 Jan 2020 17:35:39 +0000 Subject: [PATCH] README: adding a note about .env file --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 605e3e4ca8..3284a5792b 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,8 @@ As with any other Rust project, there are other ways to build: Binaries can be found at `target/debug/` if you've done `cargo build` (without specifying `--release`). Production binaries can be found at `target/release/` if you've done `cargo build --release`. + + +### Developing + +There's a `.env.sample-dev` file provided which you can rename to `.env` if you want convenient logging, backtrace, or other environment variables pre-set. The `.env` file is ignored so you don't need to worry about checking it in.