From 39d87b4749b9ab0b493a3587580d41b343489d4f Mon Sep 17 00:00:00 2001 From: Bryant Moscon Date: Fri, 18 Feb 2022 18:44:42 -0500 Subject: [PATCH 1/2] Update overview.md --- docs/overview.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/overview.md b/docs/overview.md index f54852e..420002a 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -6,6 +6,7 @@ Cryptostore utilizes the supports backends of cryptofeed to store data from exch * Redis Sorted Sets (ZSET) - `REDIS` * Redis Streams - `REDISSTREAM` * MongoDB - `MONGO` +* Postgres - `POSTGRES` Cryptostore runs in a docker container, and expects configuration to be provided to it via environment variables. The env vars it expects (not all are requires for all configurations) are: @@ -19,7 +20,9 @@ Cryptostore runs in a docker container, and expects configuration to be provided * HOST - Host for backend. Defaults to localhost. * PORT - Port for service. Defaults to backend default. * CANDLE_INTERVAL - Used for candles. Default is 1m. -* DATABASE - Specify the database for MongoDB. +* DATABASE - Specify the database for MongoDB or Postgres +* USER - the username for Postgres +* PASSWORD - the password for the specified Postgres user ### Example From 1d4d9a08fe193cdc93d3d7cc28a42e17bc77e412 Mon Sep 17 00:00:00 2001 From: Bryant Moscon Date: Fri, 18 Feb 2022 18:45:18 -0500 Subject: [PATCH 2/2] Update CHANGES.md --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 64ff46d..a71b99e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,3 +6,4 @@ * Bugfix: Input validation, remove unused callbacks from Feed. * Docs: Start documentation. * Feature: Add support for Redis Streams + * Feature: Add support for Postgres