diff --git a/_quickstart/choose_library.md b/_quickstart/choose_library.md index 2d3018cb5b5801baa5c2c6951c87590648960636..0dd93dc3c1b5e1866d179190a6ce5bba8ee50dc0 100644 --- a/_quickstart/choose_library.md +++ b/_quickstart/choose_library.md @@ -6,4 +6,4 @@ exclude: true Getting started to develop robust and feature rich **Hive** applications couldn't be easier. Accessing hive data is easy from various options depending on your infrastructure and objectives. -Building a picture discovery app is a breeze with the [JavaScript]({{ '/tutorials/#tutorials-javascript' | relative_url }}) library. There is also a [Python]({{ '/tutorials/#tutorials-python' | relative_url }}) library available, [Hive.com]({{ '/services/#services-steemit' | relative_url }}) and [HBDS]({{ '/services/#services-hbds' | relative_url }}) services, as well as many [community projects]({{ '/resources/#resources-overview' | relative_url }}) which could be beneficial for your steem project. +Building a picture discovery app is a breeze with the [JavaScript]({{ '/tutorials/#tutorials-javascript' | relative_url }}) library. There is also a [Python]({{ '/tutorials/#tutorials-python' | relative_url }}) library available, [Hive.com]({{ '/services/#services-steemit' | relative_url }}), as well as many [community projects]({{ '/resources/#resources-overview' | relative_url }}) which could be beneficial for your steem project. diff --git a/_services/jussi.md b/_services/jussi.md index e63e0e83264c9edddc94438c9bbc70bfd08dc1a8..f9d97e41e6aa1d71509a2ad4f081d376d83665e7 100644 --- a/_services/jussi.md +++ b/_services/jussi.md @@ -4,7 +4,7 @@ position: 3 description: A reverse proxy that forwards json-rpc requests. --- -Jussi is a custom-built caching layer for use with `hived` and other various services (such as [HBDS]({{ '/services/#services-hbds' | relative_url }})). +Jussi is a custom-built caching layer for use with `hived`. The purpose of this document is to help developers and node operators set up their own jussi node within a docker container. diff --git a/unused/sbds.md b/unused/sbds.md deleted file mode 100644 index 9b1cc1eb076b9b85ecade330633810f529650f5e..0000000000000000000000000000000000000000 --- a/unused/sbds.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HBDS -position: 5 ---- - -**hbds** is a tool for easily querying the data of the Hive Blockchain. - -While providing direct interfaces to several pluggable storage architectures that may be used for querying the blockchain, hbds may also be used as a lower level API upon which other applications can be built. - -**Docker Hub** - -``` -docker run -d steemit/hbds -``` - -**Python 3** -``` -pip3 install -e git+git@github.com:steemit/hbds.git#egg=hbds -``` - -**Examples** - -Stream blocks 1 to 3450000 from our dev S3 bucket -``` -hbds checkpoints get-blocks s3://steemit-dev-hbds-checkpoints/gzipped --start 1 --end 3450000 -``` - -Stream blocks 8000000 to the last block from your local copy of our S3 bucket -``` -hbds checkpoints get-blocks /home/ubuntu/checkpoints/gzipped --start 8000000 -``` - -Stream all blocks from your local copy of our S3 bucket - -``` -hbds checkpoints get-blocks /home/ubuntu/checkpoints/gzipped -``` - -**Routes** - -Coming soon.