-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.test
20 lines (13 loc) · 899 Bytes
/
.env.test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB (Preview) and CockroachDB (Preview).
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
DATABASE_URL_TEST=postgresql://postgres:postgres@localhost:5433/postgres?schema=${DEV_SCHEMA}
DEV_SCHEMA=mangrove29
DATABASE_URL_CLOUD="postgresql://..."
DATABASE_URL_STAGE="postgresql://..."
DATABASE_URL=${DATABASE_URL_TEST}
RATE_LIMIT_WINDOW=15 # how many minutes the window should be
RATE_LIMIT_MAX=100000 # how many calls one IP can call the GraphQL server within the RATE_LIMIT_WINDOW
GRAPHQL_PRODUCTION=false
READER_BUFFER_SIZE=1000;