From 35c6f2b3effc804a939648c2e65656bc37fdfd1f Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Wed, 10 Oct 2018 13:57:50 +0200 Subject: [PATCH] In .md file replace https://test.bigchaindb.com w/ {{ site.bigchaindb_api_url }} --- _src/_guide/_setup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_src/_guide/_setup.md b/_src/_guide/_setup.md index d050b54..501cbd1 100644 --- a/_src/_guide/_setup.md +++ b/_src/_guide/_setup.md @@ -26,17 +26,17 @@ Then, include that as a module and connect to any BigchainDB node. ```js const BigchainDB = require('bigchaindb-driver') -const API_PATH = 'https://test.bigchaindb.com/api/v1/' +const API_PATH = '{{ site.bigchaindb_api_url }}/api/v1/' const conn = new BigchainDB.Connection(API_PATH) ``` ```python from bigchaindb_driver import BigchainDB -conn = BigchainDB('https://test.bigchaindb.com') +conn = BigchainDB('{{ site.bigchaindb_api_url }}') ``` ```java BigchainDbConfigBuilder - .baseUrl("https://test.bigchaindb.com/").setup(); + .baseUrl("{{ site.bigchaindb_api_url }}/").setup(); ```