From cc65cfe175d268adda80d16998d2ad381f695369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Sun, 4 Nov 2018 10:38:06 +0100 Subject: [PATCH] Delete .gitignored file .env On my machine, changes to .env are visible if I run `git status`. I think we should delete all .gitignored files and clearly state in the README what needs to be done. Also the .env.template did not have a JWT secret. Probably because sb. edited the local .env file and forgot to edit it in the template. --- .env | 10 ---------- .env.template | 2 ++ 2 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 .env diff --git a/.env b/.env deleted file mode 100644 index dcb5cdb41..000000000 --- a/.env +++ /dev/null @@ -1,10 +0,0 @@ -NEO4J_URI=bolt://localhost:7687 -NEO4J_USER=neo4j -NEO4J_PASSWORD=letmein - -GRAPHQL_LISTEN_PORT=4000 -GRAPHQL_URI=http://localhost:4000 -CLIENT_URI=http://localhost:3000 -JWT_SECRET=b/&&7b78BF&fv/Vd - -MOCK=false diff --git a/.env.template b/.env.template index 4d849a121..df678a343 100644 --- a/.env.template +++ b/.env.template @@ -4,3 +4,5 @@ NEO4J_PASSWORD=letmein GRAPHQL_LISTEN_PORT=4000 GRAPHQL_URI=http://localhost:4000 MOCK=false + +JWT_SECRET=b/&&7b78BF&fv/Vd