Skip to content

Commit

Permalink
Setting HTTPS env variable to true for qr-code-reader to work cross p…
Browse files Browse the repository at this point in the history
…latform and mobile
  • Loading branch information
DigiD authored and DigiD committed Nov 20, 2018
1 parent ad50876 commit 4e9cbeb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4e9cbeb

Please sign in to comment.