mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 01:36:55 +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
|
||||
description: 'The blockchain database.'
|
||||
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
|
||||
hiring: true
|
||||
|
@ -3,7 +3,7 @@
|
||||
//=include bigchain/tab.js
|
||||
//=include bigchain/newsletter.js
|
||||
|
||||
const bigchaindbUrl = 'https://test1.testnet2.com'
|
||||
const bigchaindbUrl = 'https://test.bigchaindb.com'
|
||||
const apiPath = '/api/v1/'
|
||||
|
||||
jQuery(function ($) {
|
||||
|
@ -25,8 +25,8 @@ server:
|
||||
title: "The BigchainDB Test Network"
|
||||
version_title: "The BigchainDB Test Network is currently running on BigchainDB "
|
||||
description: "No installation needed. We handle running a BigchainDB network for you."
|
||||
button: "Get the URLs"
|
||||
link: "https://info.testnet2.com"
|
||||
button: "Visit the Test Network"
|
||||
link: "https://test.bigchaindb.com"
|
||||
bdb:
|
||||
pretitle: "Self-Hosted"
|
||||
title: "BigchainDB Server"
|
||||
|
@ -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://test1.testnet2.com/api/v1/'
|
||||
const API_PATH = 'https://test.bigchaindb.com/api/v1/'
|
||||
const conn = new BigchainDB.Connection(API_PATH)
|
||||
```
|
||||
|
||||
```python
|
||||
from bigchaindb_driver import BigchainDB
|
||||
|
||||
conn = BigchainDB('https://test1.testnet2.com')
|
||||
conn = BigchainDB('https://test.bigchaindb.com')
|
||||
```
|
||||
|
||||
```java
|
||||
BigchainDbConfigBuilder
|
||||
.baseUrl("https://test1.testnet2.com/").setup();
|
||||
.baseUrl("https://test.bigchaindb.com/").setup();
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user