Updated 'Get Started' page for new testnet

This commit is contained in:
Troy McConaghy 2018-09-24 13:40:37 +02:00
parent 19ac5b1200
commit 548dfebbad
4 changed files with 12 additions and 19 deletions

View File

@ -5,7 +5,7 @@
name: BigchainDB
description: 'The blockchain database.'
url: https://www.bigchaindb.com
bigchaindb_api_url: https://test.bigchaindb.com
bigchaindb_api_url: https://test1.testnet2.com
# set to `true` to make hiring link appear in main menu
hiring: true

View File

@ -3,8 +3,7 @@
//=include bigchain/tab.js
//=include bigchain/newsletter.js
const bigchaindbUrl = 'https://test.bigchaindb.com'
const proxyUrl = 'https://getstarted.bigchaindb.com'
const bigchaindbUrl = 'https://test1.testnet2.com'
const apiPath = '/api/v1/'
jQuery(function ($) {
@ -81,7 +80,7 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
window.removeEventListener('DOMContentLoaded', domload, false)
const driver = window.BigchainDB
const API_PATH = proxyUrl + apiPath
const API_PATH = bigchaindbUrl + apiPath
const postButton = document.getElementById('post')
const postButtonText = postButton.innerText

View File

@ -23,16 +23,16 @@ server:
network:
pretitle: "Managed"
title: "The BigchainDB Test Network"
version_title: "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."
button: "Sign up"
link: "https://testnet.bigchaindb.com"
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"
bdb:
pretitle: "Self-Hosted"
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."
button: "Install BigchainDB Server"
link: "https://docs.bigchaindb.com/projects/server/en/latest/quickstart.html"
description: "If you want to deploy and run your own BigchainDB node or network, you can."
button: "Deploy a BigchainDB node"
link: "http://docs.bigchaindb.com/projects/server/en/latest/simple-deployment-template/index.html"
# ----------------------------

View File

@ -86,10 +86,7 @@ redirect_from:
from bigchaindb_driver import BigchainDB
from bigchaindb_driver.crypto import generate_keypair
bdb = BigchainDB(
'{{ site.bigchaindb_api_url }}',
headers={'app_id': 'Get credentials from testnet.bigchaindb.com',
'app_key': 'by signing up and going to your Applications screen'})
bdb = BigchainDB('{{ site.bigchaindb_api_url }}')
alice = generate_keypair()
tx = bdb.transactions.prepare(
operation='CREATE',
@ -109,10 +106,7 @@ bdb.transactions.send(signed_tx)
const driver = require('bigchaindb-driver')
const alice = new driver.Ed25519Keypair()
const conn = new driver.Connection(
'{{ 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 conn = new driver.Connection('{{ site.bigchaindb_api_url }}/api/v1/')
const tx = driver.Transaction.makeCreateTransaction(
{ message: 'Blockchain all the things!' },
null,