From 4e9cbebecaae58deae59402d7ffa0100e19ee391 Mon Sep 17 00:00:00 2001 From: DigiD Date: Mon, 19 Nov 2018 21:10:54 -0800 Subject: [PATCH] Setting HTTPS env variable to true for qr-code-reader to work cross platform and mobile --- README.md | 2 +- package.json | 2 +- run.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4d62e4cf1..80ee5ecf9 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ cd ~;git clone https://github.com/austintgriffith/burner-wallet.git Then, fire up a Docker container with your environment all prepared for you: ``` -docker run -ti --rm --name clevis -p 3000:3000 -p 8545:8545 -p 18462:18462 -v ~/burner-wallet:/dapp austingriffith/clevis:latest +docker run -e "HTTPS=true" -ti --rm --name clevis -p 3000:3000 -p 8545:8545 -p 18462:18462 -v ~/burner-wallet:/dapp austingriffith/clevis:latest ``` Note: You will be prompted for directories to store things, just use the defaults (hit enter): ![image](https://user-images.githubusercontent.com/2653167/48425351-e4997780-e721-11e8-9228-f8e28d69704c.png) diff --git a/package.json b/package.json index 5e2608834..f2d55f223 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "dependencies": { "axios": "^0.18.0", - "clevis": "0.0.100", + "clevis": "0.0.105", "cors": "^2.8.4", "dapparatus": "^1.0.40", "dotenv": "^6.1.0", diff --git a/run.sh b/run.sh index 5bc80b33f..ac18c200a 100755 --- a/run.sh +++ b/run.sh @@ -1,2 +1,2 @@ #!/bin/bash -docker run -ti --rm --name clevis -p 3000:3000 -p 8545:8545 -v ${PWD}:/dapp austingriffith/clevis +docker run -e "HTTPS=true" -ti --rm --name clevis -p 3000:3000 -p 8545:8545 -v ${PWD}:/dapp austingriffith/clevis