1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-09 07:25:19 +02:00

Merge pull request #29 from ductilestudios/postgres-port

move postgres to port 5433 locally
This commit is contained in:
Josh Pigford 2024-01-11 10:20:40 -06:00 committed by GitHub
commit 1e73ce9114
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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