Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4297 from willy-b/env-variable-for-ledger-url
Browse files Browse the repository at this point in the history
Ledger server is configurable by ENV variable "LEDGER_SERVER_URL"
  • Loading branch information
mrose17 authored Oct 16, 2016
2 parents 6536403 + c8b1884 commit a24dcad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/ledger.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ var bootP = false
var client
const clientOptions = { debugP: process.env.LEDGER_DEBUG,
loggingP: process.env.LEDGER_LOGGING,
verboseP: process.env.LEDGER_VERBOSE
verboseP: process.env.LEDGER_VERBOSE,
server: process.env.LEDGER_SERVER_URL
}

/*
Expand Down

0 comments on commit a24dcad

Please sign in to comment.