Skip to content

Commit

Permalink
fix: remove retry instruction from README
Browse files Browse the repository at this point in the history
  • Loading branch information
w3b6x9 committed Feb 10, 2021
1 parent 790af3f commit 7f6e54b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions README.md
Expand Up @@ -158,11 +158,6 @@ DB_PASSWORD # {string} Database password
DB_PORT # {number} Database port
SLOT_NAME # {string} A unique name for Postgres to track where this server has "listened until". If the server dies, it can pick up from the last position. This should be lowercase.
PORT # {number} Port which you can connect your client/listeners

DB_RETRY_INITIAL_DELAY # {number} Database connection retry initial delay in milliseconds. Default is 500.
DB_RETRY_MAXIMUM_DELAY # {number} Database connection retry maximum delay in milliseconds. Default is 300000 (5 minutes).
DB_RETRY_JITTER # {number} Database connection retry jitter in milliseconds. Default is 10 (10%).

SECURE_CHANNELS # {string} (options: 'true' or 'false') Enable/Disable channels authorization via JWT verification.
JWT_SECRET # {string} HS algorithm octet key (e.g. "95x0oR8jq9unl9pOIx"). Only required if SECURE_CHANNELS is set to true.
JWT_CLAIM_VALIDATORS # {string} Expected claim key/value pairs compared to JWT claims via equality checks in order to validate JWT. e.g. '{"iss": "Issuer", "nbf": 1610078130}'. This is optional but encouraged.
Expand All @@ -182,9 +177,6 @@ docker run \
-e HOSTNAME='localhost' \
-e JWT_SECRET='SOMETHING_SUPER_SECRET' \
-p 4000:4000 \
-e DB_RETRY_INITIAL_DELAY=500 \
-e DB_RETRY_MAXIMUM_DELAY=300000 \
-e DB_RETRY_JITTER=10 \
-e SECURE_CHANNELS='true' \
-e JWT_SECRET='jwt-secret' \
-e JWT_CLAIM_VALIDATORS='{"iss": "Issuer", "nbf": 1610078130}' \
Expand Down

0 comments on commit 7f6e54b

Please sign in to comment.