Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
CLERK_SECRET_KEY: ${{secrets.CLERK_SECRET_KEY}}
CLERK_TEST_USER_EMAIL: ${{secrets.CLERK_TEST_USER_EMAIL}}
CLERK_TEST_USERNAME: ${{secrets.CLERK_TEST_USERNAME}}
DATABASE_URL: postgresql://yourusername:yourpassword@localhost:5432/yourdatabase
DIRECT_URL: postgresql://yourusername:yourpassword@localhost:5432/yourdatabase
DATABASE_URL: postgresql://postgres:yourpassword@localhost:5432/yourdatabase
DIRECT_URL: postgresql://postgres:yourpassword@localhost:5432/yourdatabase
CLERK_WEBHOOK_SECRET: mock-clerk-webhook-secret
STRIPE_SECRET_KEY: mock-stripe-secret-key
AWS_REGION: mock-aws-region
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
env:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY}}
CLERK_SECRET_KEY: ${{secrets.CLERK_SECRET_KEY}}
DATABASE_URL: postgresql://yourusername:yourpassword@localhost:5432/yourdatabase
DIRECT_URL: postgresql://yourusername:yourpassword@localhost:5432/yourdatabase
DATABASE_URL: postgresql://postgres:yourpassword@localhost:5432/yourdatabase
DIRECT_URL: postgresql://postgres:yourpassword@localhost:5432/yourdatabase
CLERK_WEBHOOK_SECRET: mock-clerk-webhook-secret
STRIPE_SECRET_KEY: mock-stripe-secret-key
AWS_REGION: mock-aws-region
Expand Down
4 changes: 2 additions & 2 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
services:
db:
image: postgres:latest
image: postgres:17
command: postgres -c 'max_connections=1000'
restart: always
environment:
POSTGRES_USER: yourusername
POSTGRES_USER: postgres
POSTGRES_PASSWORD: yourpassword
POSTGRES_DB: yourdatabase
ports:
Expand Down
Loading