-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env
17 lines (12 loc) · 892 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Originally, I would not add this file in the source control management.
# Since it's a sample project, I want you be able to run it locally without any extra configuraton.
# Change the DATABASE_URL as you need - my credentials are configured on docker-compose.yml
NODE_ENV = development
PORT = 3000
JWT = 0a19d5e8-4930-4ddc-9d77-e2f8753ba05d
# This was inserted by `prisma init`:
# 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="postgresql://admin:123@localhost:5432/tasks?schema=public"