From 34879f0eb3cfce2dab01cd0b046035951ceab07f Mon Sep 17 00:00:00 2001 From: Brian Giometti Date: Thu, 11 Jan 2024 09:00:25 -0700 Subject: [PATCH] move postgres to port 5433 locally --- .env.example | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 35f6636d..8fad480b 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # Used by `prisma` commands -NX_DATABASE_URL=postgresql://maybe:maybe@localhost:5432/maybe_local +NX_DATABASE_URL=postgresql://maybe:maybe@localhost:5433/maybe_local # If using free ngrok account for webhooks NGROK_AUTH_TOKEN= diff --git a/docker-compose.yml b/docker-compose.yml index a44a0258..8593af32 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,7 @@ services: profiles: [services] image: timescale/timescaledb:latest-pg14 ports: - - 5432:5432 + - 5433:5432 environment: POSTGRES_USER: maybe POSTGRES_PASSWORD: maybe