-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .env.test, docker-compose.yaml, and dev:test
script
- Loading branch information
Eugen Istoc
committed
Nov 28, 2023
1 parent
665fd39
commit 79ac4ba
Showing
5 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
NUXT_PUBLIC_LOGROCKET_APP_ID="" | ||
DATABASE_URL="postgresql://prisma:prisma@localhost:5433/tests" | ||
|
||
# Analytics | ||
NUXT_PUBLIC_UMAMI_HOST="" | ||
NUXT_PUBLIC_UMAMI_ID="" | ||
|
||
# Floatie | ||
NUXT_PUBLIC_FLOATIE_CLIENT_KEY='' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: '3.9' | ||
|
||
services: | ||
db: | ||
image: postgres:16 | ||
restart: always | ||
container_name: integration-tests-prisma | ||
ports: | ||
- '5433:5432' | ||
environment: | ||
POSTGRES_USER: prisma | ||
POSTGRES_PASSWORD: prisma | ||
POSTGRES_DB: tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.