1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-09 15:35:22 +02:00

move postgres to port 5433 locally

This commit is contained in:
Brian Giometti 2024-01-11 09:00:25 -07:00
parent 7562f139d1
commit 34879f0eb3
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
# Used by `prisma` commands # 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 # If using free ngrok account for webhooks
NGROK_AUTH_TOKEN= NGROK_AUTH_TOKEN=

View file

@ -7,7 +7,7 @@ services:
profiles: [services] profiles: [services]
image: timescale/timescaledb:latest-pg14 image: timescale/timescaledb:latest-pg14
ports: ports:
- 5432:5432 - 5433:5432
environment: environment:
POSTGRES_USER: maybe POSTGRES_USER: maybe
POSTGRES_PASSWORD: maybe POSTGRES_PASSWORD: maybe