-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
18 lines (15 loc) · 936 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
#DATABASE_URL="postgres://publicbets:BETpUBlic2024@postgres:5432/publicbets?schema=public&connect_timeout=300"
#DATABASE_URL="postgres://publicbets:[email protected]:5432/publicbets"
#DATABASE_URL="postgres://publicbets:BETpUBlic2024@localhost:5433/publicbets"
DB_USER=publicbets
DB_PASSWORD=BETpUBlic2024
DB_NAME=publicbets
DB_PORT=5432
DB_HOST=localhost
NODE_ENV=production
CONTAINER_NAME=database
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${CONTAINER_NAME}:${DB_PORT}/${DB_NAME}