Last active
February 9, 2022 13:45
-
-
Save cprieto/0171403c450623c8e5c087587383d32b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
deps/engines-3.7.0-11.qe-napi-2-7d9243c73ade811196e360a14435eb4756076300 |
This file contains hidden or 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
export TEST_POSTGRES_URI="postgres://prisma:prisma@localhost:5432/tests" | |
export TEST_POSTGRES_ISOLATED_URI="postgres://prisma:prisma@localhost:5435/tests" | |
export TEST_POSTGRES_URI_MIGRATE="postgres://prisma:prisma@localhost:5432/tests-migrate" | |
export TEST_POSTGRES_SHADOWDB_URI_MIGRATE="postgres://prisma:prisma@localhost:5432/tests-migrate-shadowdb" | |
export TEST_MYSQL_URI="mysql://root:root@localhost:3306/tests" | |
export TEST_MYSQL_ISOLATED_URI="mysql://root:root@localhost:3307/tests" | |
export TEST_MYSQL_URI_MIGRATE="mysql://root:root@localhost:3306/tests-migrate" | |
export TEST_MYSQL_SHADOWDB_URI_MIGRATE="mysql://root:root@localhost:3306/tests-migrate-shadowdb" | |
export TEST_MARIADB_URI="mysql://prisma:prisma@localhost:4306/tests" | |
export TEST_MSSQL_URI="mssql://SA:Pr1sm4_Pr1sm4@localhost:1433/tests" # for `mssql` lib used in some tests | |
export TEST_MSSQL_JDBC_URI="sqlserver://localhost:1433;database=tests;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;" | |
export TEST_MSSQL_JDBC_URI_MIGRATE="sqlserver://localhost:1433;database=tests-migrate;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;" | |
export TEST_MSSQL_SHADOWDB_JDBC_URI_MIGRATE="sqlserver://localhost:1433;database=tests-migrate-shadowdb;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;" | |
export TEST_MONGO_URI="mongodb://root:prisma@localhost:27017/tests?authSource=admin" | |
export TEST_COCKROACH_URI=postgresql://prisma@localhost:26257/⏎ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment