From 0c4a7aea2a85b582795a23c6e63a2dd7134c4e9a Mon Sep 17 00:00:00 2001 From: urania-dev Date: Thu, 8 Aug 2024 20:36:27 +0200 Subject: [PATCH] fixed stupiid typos around the documentation --- README.md | 2 +- docker-compose.pg.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc22f73..7a6faf8 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ services: - 3000:3000 environment: DATABASE_URL: 'file:./db.sqlite' - DATABASE_PROVIDER: sqlite # mysql | sqlite | pg + DATABASE_PROVIDER: sqlite # mysql | sqlite | postgres TOKEN_SECRET: # openssl rand -base64 32 ORIGIN: https://example.com ``` diff --git a/docker-compose.pg.yml b/docker-compose.pg.yml index e662048..338f35b 100644 --- a/docker-compose.pg.yml +++ b/docker-compose.pg.yml @@ -7,7 +7,7 @@ services: DATABASE_URL: 'postgresql://root:password@postgres:5432/snappdb' TOKEN_SECRET: # openssl rand -base64 32 ORIGIN: https://example.com - DATABASE_PROVIDER: postgresql + DATABASE_PROVIDER: postgres depends_on: - postgres networks: