mirror of
https://github.com/Retropex/bitfeed.git
synced 2025-05-13 03:30:47 +02:00
Prep for v2.3.0
This commit is contained in:
parent
a650445c1f
commit
3f748cd6c4
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "bitfeed-client",
|
"name": "bitfeed-client",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rollup -c",
|
"build": "rollup -c",
|
||||||
"dev": "rollup -c -w",
|
"dev": "rollup -c -w",
|
||||||
|
@ -14,7 +14,7 @@ function getInjectedEnv (key, fallback) {
|
|||||||
export default {
|
export default {
|
||||||
dev: ENVIRONMENT === 'development',
|
dev: ENVIRONMENT === 'development',
|
||||||
// external API for processing donations, retrieving donor info & message bar content
|
// external API for processing donations, retrieving donor info & message bar content
|
||||||
donationRoot: 'https://donate.monospace.live',
|
donationRoot: 'https://donate.bitfeed.live',
|
||||||
// enables some additional logging & debugging tools
|
// enables some additional logging & debugging tools
|
||||||
debug: false,
|
debug: false,
|
||||||
// enables an additional square packing algorithm debugging tool
|
// enables an additional square packing algorithm debugging tool
|
||||||
|
@ -27,6 +27,7 @@ The API server expects the following environment variables to be set:
|
|||||||
| LOG_LEVEL | Tailor logging verbosity. either "error", "info" (default) or "debug" |
|
| LOG_LEVEL | Tailor logging verbosity. either "error", "info" (default) or "debug" |
|
||||||
| RPC_POOLS | Number of connection pools for RPC requests to Bitcoin Core |
|
| RPC_POOLS | Number of connection pools for RPC requests to Bitcoin Core |
|
||||||
| RPC_POOL_SIZE | Number of connections maintained per pool (RPC_POOLS x RPC_POOL_SIZE should be substantially lower than `rpcworkqueue` in bitcoin.conf) |
|
| RPC_POOL_SIZE | Number of connections maintained per pool (RPC_POOLS x RPC_POOL_SIZE should be substantially lower than `rpcworkqueue` in bitcoin.conf) |
|
||||||
|
| INDEXED | 'true' to build indexes required for certain features (see [INDEXES.md](https://github.com/bitfeed-project/block/master/server/INDEXES.md) for details). Omit this variable to disable indexing |
|
||||||
| BITCOIN_HOST | Bitcoin node host address |
|
| BITCOIN_HOST | Bitcoin node host address |
|
||||||
| BITCOIN_ZMQ_RAWBLOCK_PORT | Bitcoin node ZMQ port for block events (to match `zmqpubrawblock` in bitcoin.conf) |
|
| BITCOIN_ZMQ_RAWBLOCK_PORT | Bitcoin node ZMQ port for block events (to match `zmqpubrawblock` in bitcoin.conf) |
|
||||||
| BITCOIN_ZMQ_RAWTX_PORT | Bitcoin node ZMQ port for transaction events (to match `zmqpubrawtx` in bitcoin.conf) |
|
| BITCOIN_ZMQ_RAWTX_PORT | Bitcoin node ZMQ port for transaction events (to match `zmqpubrawtx` in bitcoin.conf) |
|
||||||
|
@ -4,7 +4,7 @@ defmodule BitcoinStream.MixProject do
|
|||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :bitcoin_stream,
|
app: :bitcoin_stream,
|
||||||
version: "2.2.1",
|
version: "2.3.0",
|
||||||
elixir: "~> 1.10",
|
elixir: "~> 1.10",
|
||||||
start_permanent: Mix.env() == :prod,
|
start_permanent: Mix.env() == :prod,
|
||||||
deps: deps(),
|
deps: deps(),
|
||||||
|
Loading…
Reference in New Issue
Block a user