forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.envrc
51 lines (42 loc) · 3.1 KB
/
.envrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Note: The default database name for the main connection string of each database has to be `tests` (or `master` for SQL Server) as we we search and replace that value later in our test setup
# PostgreSQL
export TEST_POSTGRES_URI="postgres:https://prisma:prisma@localhost:5432/tests"
export TEST_POSTGRES_URI_MIGRATE="postgres:https://prisma:prisma@localhost:5432/tests-migrate"
export TEST_POSTGRES_SHADOWDB_URI_MIGRATE="postgres:https://prisma:prisma@localhost:5432/tests-migrate-shadowdb"
# Note: the isolated instance is only needed for one test (client/src/__tests__/integration/errors/connection-limit-postgres/test.ts)
export TEST_POSTGRES_ISOLATED_URI="postgres:https://prisma:prisma@localhost:5435/tests"
# MySQL
export TEST_MYSQL_URI="mysql:https://root:root@localhost:3306/tests"
export TEST_MYSQL_URI_MIGRATE="mysql:https://root:root@localhost:3306/tests-migrate"
export TEST_MYSQL_SHADOWDB_URI_MIGRATE="mysql:https://root:root@localhost:3306/tests-migrate-shadowdb"
# Note: the isolated instance is only needed for one test (client/src/__tests__/integration/errors/connection-limit-mysql/test.ts)
export TEST_MYSQL_ISOLATED_URI="mysql:https://root:root@localhost:3307/tests"
# MariaDB
export TEST_MARIADB_URI="mysql:https://root:root@localhost:4306/tests"
# SQL Server
export TEST_MSSQL_JDBC_URI="sqlserver:https://localhost:1433;database=master;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;"
export TEST_MSSQL_JDBC_URI_MIGRATE="sqlserver:https://localhost:1433;database=tests-migrate;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;"
export TEST_MSSQL_SHADOWDB_JDBC_URI_MIGRATE="sqlserver:https://localhost:1433;database=tests-migrate-shadowdb;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;"
export TEST_MSSQL_URI="mssql:https://SA:Pr1sm4_Pr1sm4@localhost:1433/master" # for `mssql` lib used in some tests
# MongoDB
export TEST_MONGO_URI="mongodb:https://localhost:27018/tests"
export TEST_MONGO_URI_MIGRATE="mongodb:https://localhost:27017/tests-migrate"
export TEST_MONGO_URI_MIGRATE_EXISTING_DB="mongodb:https://localhost:27017/tests-migrate-existing-db"
# CockroachDB
export TEST_COCKROACH_URI="postgresql:https://prisma@localhost:26257/tests"
export TEST_COCKROACH_URI_MIGRATE="postgresql:https://prisma@localhost:26257/tests-migrate"
export TEST_COCKROACH_SHADOWDB_URI_MIGRATE="postgresql:https://prisma@localhost:26257/tests-migrate-shadowdb"
# Prisma Client - Functional test suite
export TEST_FUNCTIONAL_POSTGRES_URI="postgres:https://prisma:prisma@localhost:5432/PRISMA_DB_NAME"
export TEST_FUNCTIONAL_POSTGRES_16_URI="postgres:https://prisma:prisma@localhost:15432/PRISMA_DB_NAME"
export TEST_FUNCTIONAL_MYSQL_URI="mysql:https://root:root@localhost:3306/PRISMA_DB_NAME"
export TEST_FUNCTIONAL_VITESS_8_URI="mysql:https://root:root@localhost:33807/PRISMA_DB_NAME"
export TEST_FUNCTIONAL_MSSQL_URI="sqlserver:https://localhost:1433;database=PRISMA_DB_NAME;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;"
export TEST_FUNCTIONAL_MONGO_URI="mongodb:https://localhost:27018/PRISMA_DB_NAME"
export TEST_FUNCTIONAL_COCKROACH_URI="postgresql:https://prisma@localhost:26257/PRISMA_DB_NAME"
# To hide "Update available 0.0.0 -> x.x.x"
export PRISMA_HIDE_UPDATE_MESSAGE="true"
if [ -f .envrc.local ]; then
watch_file .envrc.local
source .envrc.local
fi