mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +01:00
Change testnet Root URL back to test.bigchaindb.com
This commit is contained in:
parent
050834fa11
commit
4a13c1ada5
@ -5,7 +5,7 @@
|
|||||||
name: BigchainDB
|
name: BigchainDB
|
||||||
description: 'The blockchain database.'
|
description: 'The blockchain database.'
|
||||||
url: https://www.bigchaindb.com
|
url: https://www.bigchaindb.com
|
||||||
bigchaindb_api_url: https://test1.testnet2.com
|
bigchaindb_api_url: https://test.bigchaindb.com
|
||||||
|
|
||||||
# set to `true` to make hiring link appear in main menu
|
# set to `true` to make hiring link appear in main menu
|
||||||
hiring: true
|
hiring: true
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//=include bigchain/tab.js
|
//=include bigchain/tab.js
|
||||||
//=include bigchain/newsletter.js
|
//=include bigchain/newsletter.js
|
||||||
|
|
||||||
const bigchaindbUrl = 'https://test1.testnet2.com'
|
const bigchaindbUrl = 'https://test.bigchaindb.com'
|
||||||
const apiPath = '/api/v1/'
|
const apiPath = '/api/v1/'
|
||||||
|
|
||||||
jQuery(function ($) {
|
jQuery(function ($) {
|
||||||
|
@ -25,8 +25,8 @@ server:
|
|||||||
title: "The BigchainDB Test Network"
|
title: "The BigchainDB Test Network"
|
||||||
version_title: "The BigchainDB Test Network is currently running on BigchainDB "
|
version_title: "The BigchainDB Test Network is currently running on BigchainDB "
|
||||||
description: "No installation needed. We handle running a BigchainDB network for you."
|
description: "No installation needed. We handle running a BigchainDB network for you."
|
||||||
button: "Get the URLs"
|
button: "Visit the Test Network"
|
||||||
link: "https://info.testnet2.com"
|
link: "https://test.bigchaindb.com"
|
||||||
bdb:
|
bdb:
|
||||||
pretitle: "Self-Hosted"
|
pretitle: "Self-Hosted"
|
||||||
title: "BigchainDB Server"
|
title: "BigchainDB Server"
|
||||||
|
@ -26,17 +26,17 @@ Then, include that as a module and connect to any BigchainDB node.
|
|||||||
```js
|
```js
|
||||||
const BigchainDB = require('bigchaindb-driver')
|
const BigchainDB = require('bigchaindb-driver')
|
||||||
|
|
||||||
const API_PATH = 'https://test1.testnet2.com/api/v1/'
|
const API_PATH = 'https://test.bigchaindb.com/api/v1/'
|
||||||
const conn = new BigchainDB.Connection(API_PATH)
|
const conn = new BigchainDB.Connection(API_PATH)
|
||||||
```
|
```
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from bigchaindb_driver import BigchainDB
|
from bigchaindb_driver import BigchainDB
|
||||||
|
|
||||||
conn = BigchainDB('https://test1.testnet2.com')
|
conn = BigchainDB('https://test.bigchaindb.com')
|
||||||
```
|
```
|
||||||
|
|
||||||
```java
|
```java
|
||||||
BigchainDbConfigBuilder
|
BigchainDbConfigBuilder
|
||||||
.baseUrl("https://test1.testnet2.com/").setup();
|
.baseUrl("https://test.bigchaindb.com/").setup();
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user