From 0c1645333141abebbdfe76ced076d0e7fbb6b8da Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Mon, 13 Aug 2018 08:35:51 -0400 Subject: [PATCH] Fix issues with build caused by quotes in env variables. --- dev.env | 4 ++-- docker.env | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev.env b/dev.env index 6d91541..f11a37f 100644 --- a/dev.env +++ b/dev.env @@ -1,4 +1,4 @@ -ROOKERIES_COUCHDB="http://admin:password@localhost:5984/rookeries/" -ROOKERIES_JWT_SECRET_KEY="problematic_penguins" +ROOKERIES_COUCHDB=http://admin:password@localhost:5984/rookeries/ +ROOKERIES_JWT_SECRET_KEY=problematic_penguins RUST_BACKTRACE=1 RUST_LOG=error,rookeries=info,actix_web=info diff --git a/docker.env b/docker.env index 568b05c..ca5ec02 100644 --- a/docker.env +++ b/docker.env @@ -1,4 +1,4 @@ -ROOKERIES_COUCHDB="http://admin:password@db:5984/rookeries/" -ROOKERIES_JWT_SECRET_KEY="problematic_penguins" +ROOKERIES_COUCHDB=http://admin:password@db:5984/rookeries/ +ROOKERIES_JWT_SECRET_KEY=problematic_penguins RUST_BACKTRACE=1 RUST_LOG=error,rookeries=info,actix_web=info