mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 01:36:55 +01:00
Merge pull request #270 from bigchaindb/update-get-started-for-new-testnet
Update get started for new testnet
This commit is contained in:
commit
76d0ad2d47
@ -4,7 +4,6 @@
|
|||||||
//=include bigchain/newsletter.js
|
//=include bigchain/newsletter.js
|
||||||
|
|
||||||
const bigchaindbUrl = 'https://test.bigchaindb.com'
|
const bigchaindbUrl = 'https://test.bigchaindb.com'
|
||||||
const proxyUrl = 'https://getstarted.bigchaindb.com'
|
|
||||||
const apiPath = '/api/v1/'
|
const apiPath = '/api/v1/'
|
||||||
|
|
||||||
jQuery(function ($) {
|
jQuery(function ($) {
|
||||||
@ -81,7 +80,7 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
|
|||||||
window.removeEventListener('DOMContentLoaded', domload, false)
|
window.removeEventListener('DOMContentLoaded', domload, false)
|
||||||
|
|
||||||
const driver = window.BigchainDB
|
const driver = window.BigchainDB
|
||||||
const API_PATH = proxyUrl + apiPath
|
const API_PATH = bigchaindbUrl + apiPath
|
||||||
|
|
||||||
const postButton = document.getElementById('post')
|
const postButton = document.getElementById('post')
|
||||||
const postButtonText = postButton.innerText
|
const postButtonText = postButton.innerText
|
||||||
|
@ -23,16 +23,16 @@ server:
|
|||||||
network:
|
network:
|
||||||
pretitle: "Managed"
|
pretitle: "Managed"
|
||||||
title: "The BigchainDB Test Network"
|
title: "The BigchainDB Test Network"
|
||||||
version_title: "Test Network is currently running on BigchainDB "
|
version_title: "The BigchainDB Test Network is currently running on BigchainDB "
|
||||||
description: "No installation needed. Sign up and connect instantly, we will handle running a BigchainDB network for you."
|
description: "No installation needed. We handle running a BigchainDB network for you."
|
||||||
button: "Sign up"
|
button: "Visit the Test Network"
|
||||||
link: "https://testnet.bigchaindb.com"
|
link: "https://test.bigchaindb.com"
|
||||||
bdb:
|
bdb:
|
||||||
pretitle: "Self-Hosted"
|
pretitle: "Self-Hosted"
|
||||||
title: "BigchainDB Server"
|
title: "BigchainDB Server"
|
||||||
description: "If you want to run your own BigchainDB instance, you can either get set up on Linux or with Docker on any system."
|
description: "If you want to deploy and run your own BigchainDB node or network, you can."
|
||||||
button: "Install BigchainDB Server"
|
button: "Deploy a BigchainDB node"
|
||||||
link: "https://docs.bigchaindb.com/projects/server/en/latest/quickstart.html"
|
link: "http://docs.bigchaindb.com/projects/server/en/latest/simple-deployment-template/index.html"
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------
|
# ----------------------------
|
||||||
|
@ -21,30 +21,22 @@ pip install -U bigchaindb-driver
|
|||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, include that as a module and connect to any BigchainDB node. You can create your own `app_id` and `app_key` on [BigchainDB Testnet](https://testnet.bigchaindb.com).
|
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://test.bigchaindb.com/api/v1/'
|
const API_PATH = '{{ site.bigchaindb_api_url }}/api/v1/'
|
||||||
const conn = new BigchainDB.Connection(API_PATH, {
|
const conn = new BigchainDB.Connection(API_PATH)
|
||||||
app_id: 'Get one from testnet.bigchaindb.com',
|
|
||||||
app_key: 'Get one from testnet.bigchaindb.com'
|
|
||||||
})
|
|
||||||
```
|
```
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from bigchaindb_driver import BigchainDB
|
from bigchaindb_driver import BigchainDB
|
||||||
|
|
||||||
conn = BigchainDB(
|
conn = BigchainDB('{{ site.bigchaindb_api_url }}')
|
||||||
'https://test.bigchaindb.com',
|
|
||||||
headers={'app_id': 'Get one from testnet.bigchaindb.com',
|
|
||||||
'app_key': 'Get one from testnet.bigchaindb.com'})
|
|
||||||
```
|
```
|
||||||
|
|
||||||
```java
|
```java
|
||||||
BigchainDbConfigBuilder
|
BigchainDbConfigBuilder
|
||||||
.baseUrl("https://test.bigchaindb.com/")
|
.baseUrl("{{ site.bigchaindb_api_url }}/").setup();
|
||||||
.addToken("app_id", "Get one from testnet.bigchaindb.com")
|
|
||||||
.addToken("app_key","Get one from testnet.bigchaindb.com").setup();
|
|
||||||
```
|
```
|
||||||
|
@ -72,12 +72,7 @@ const Orm = require('bigchaindb-orm')
|
|||||||
|
|
||||||
class DID extends Orm {
|
class DID extends Orm {
|
||||||
constructor(entity) {
|
constructor(entity) {
|
||||||
super(
|
super(API_PATH)
|
||||||
API_PATH, {
|
|
||||||
app_id: 'Get one from testnet.bigchaindb.com',
|
|
||||||
app_key: 'Get one from testnet.bigchaindb.com'
|
|
||||||
}
|
|
||||||
)
|
|
||||||
this.entity = entity
|
this.entity = entity
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -86,10 +86,7 @@ redirect_from:
|
|||||||
from bigchaindb_driver import BigchainDB
|
from bigchaindb_driver import BigchainDB
|
||||||
from bigchaindb_driver.crypto import generate_keypair
|
from bigchaindb_driver.crypto import generate_keypair
|
||||||
|
|
||||||
bdb = BigchainDB(
|
bdb = BigchainDB('{{ site.bigchaindb_api_url }}')
|
||||||
'{{ site.bigchaindb_api_url }}',
|
|
||||||
headers={'app_id': 'Get credentials from testnet.bigchaindb.com',
|
|
||||||
'app_key': 'by signing up and going to your Applications screen'})
|
|
||||||
alice = generate_keypair()
|
alice = generate_keypair()
|
||||||
tx = bdb.transactions.prepare(
|
tx = bdb.transactions.prepare(
|
||||||
operation='CREATE',
|
operation='CREATE',
|
||||||
@ -109,10 +106,7 @@ bdb.transactions.send(signed_tx)
|
|||||||
const driver = require('bigchaindb-driver')
|
const driver = require('bigchaindb-driver')
|
||||||
|
|
||||||
const alice = new driver.Ed25519Keypair()
|
const alice = new driver.Ed25519Keypair()
|
||||||
const conn = new driver.Connection(
|
const conn = new driver.Connection('{{ site.bigchaindb_api_url }}/api/v1/')
|
||||||
'{{ site.bigchaindb_api_url }}/api/v1/',
|
|
||||||
{ app_id: 'Get credentials from testnet.bigchaindb.com',
|
|
||||||
app_key: 'by signing up and going to your Applications screen' })
|
|
||||||
const tx = driver.Transaction.makeCreateTransaction(
|
const tx = driver.Transaction.makeCreateTransaction(
|
||||||
{ message: 'Blockchain all the things!' },
|
{ message: 'Blockchain all the things!' },
|
||||||
null,
|
null,
|
||||||
|
Loading…
Reference in New Issue
Block a user