Sphinx changed how it handles rel links in .md (#2627)

* Sphinx changed how it handles rel links in .md

* Remove all --process-dependency-links everywhere
This commit is contained in:
Troy McConaghy
2019-01-24 14:21:21 +01:00
committed by GitHub
parent d8f51d8999
commit eb2f8ddc73
28 changed files with 35 additions and 40 deletions

View File

@@ -21,7 +21,7 @@ Show the version number. `bigchaindb -v` does the same thing.
## bigchaindb configure
Generate a local configuration file (which can be used to set some or all [BigchainDB node configuration settings](configuration.html)). It will ask you for the values of some configuration settings.
Generate a local configuration file (which can be used to set some or all [BigchainDB node configuration settings](configuration)). It will ask you for the values of some configuration settings.
If you press Enter for a value, it will use the default value.
At this point, only one database backend is supported: `localmongodb`.
@@ -41,7 +41,7 @@ bigchaindb -y configure localmongodb
## bigchaindb show-config
Show the values of the [BigchainDB node configuration settings](configuration.html).
Show the values of the [BigchainDB node configuration settings](configuration).
## bigchaindb init
@@ -78,7 +78,7 @@ section of Python's documentation.
For a more fine-grained control over the logging configuration you can use the
configuration file as documented under
[Configuration Settings](configuration.html).
[Configuration Settings](configuration).
## bigchaindb election

View File

@@ -108,7 +108,7 @@ If (no environment variables were set and there's no local config file), or you
## server.*
`server.bind`, `server.loglevel` and `server.workers`
are settings for the [Gunicorn HTTP server](http://gunicorn.org/), which is used to serve the [HTTP client-server API](../http-client-server-api.html).
are settings for the [Gunicorn HTTP server](http://gunicorn.org/), which is used to serve the [HTTP client-server API](../http-client-server-api).
`server.bind` is where to bind the Gunicorn HTTP server socket. It's a string. It can be any valid value for [Gunicorn's bind setting](http://docs.gunicorn.org/en/stable/settings.html#bind). For example:
@@ -165,7 +165,7 @@ export BIGCHAINDB_SERVER_WORKERS=5
These settings are for the
[aiohttp server](https://aiohttp.readthedocs.io/en/stable/index.html),
which is used to serve the
[WebSocket Event Stream API](../websocket-event-stream-api.html).
[WebSocket Event Stream API](../events/websocket-event-stream-api).
`wsserver.scheme` should be either `"ws"` or `"wss"`
(but setting it to `"wss"` does *not* enable SSL/TLS).
`wsserver.host` is where to bind the aiohttp server socket and