From 71e6d404165d0de69e7261392a6f20151935a5c0 Mon Sep 17 00:00:00 2001 From: Peter Bull Date: Sat, 23 Apr 2016 16:56:15 -0400 Subject: [PATCH] Update typo --- docs/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index 6bbd02a..888d627 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -161,7 +161,7 @@ If you have more complex requirements for recreating your environment, consider ### Keep secrets out of version control -You _really_ don't want to leak your AWS secret key or Postgres username and password on Github. Enough said, mostly — see the [Twelve Factor App](http://12factor.net/) principles on this point. We generally use a `.env` file that, thanks to the `.gitignore`, never that defines secrets as environment variables, and are read in automatically by a package like `dotenv` in Python. +You _really_ don't want to leak your AWS secret key or Postgres username and password on Github. Enough said, mostly — see the [Twelve Factor App](http://12factor.net/) principles on this point. We generally use a `.env` file that, thanks to the `.gitignore`, never makes it into the repository (secrets should be shared via other means with contributors). The `.env` file defines secrets as environment variables, and is read in automatically by a package like `dotenv` in Python. ## Contributing