-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.env.production
25 lines (20 loc) · 1.13 KB
/
.env.production
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
# .env setup instructions:
# 1. Copy this ".env.example" file to ".env"
# 2. Fill out the PGPASSWORD and NEXTAUTH_SECRET fields with random passwords
# Use secure, random string (https://passwordsgenerator.net/)
# This is the password that Docker will use to create the PostgreSQL container.
PGPASSWORD=""
# Use secure, random string (https://passwordsgenerator.net/)
# Documentation: https://next-auth.js.org/configuration/options#nextauth_secret
NEXTAUTH_SECRET=""
######### You shouldn't have to edit anything below this line for development. #####################
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#using-environment-variables
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
DATABASE_URL="postgresql://postgres:${PGPASSWORD}@localhost:5932/trpc-starter-websockets?schema=public"
NODE_ENV=production
NEXT_PUBLIC_APP_URL="http://localhost:3000"
NEXT_PUBLIC_WS_URL="ws://localhost:3001"
NEXTAUTH_URL="http://localhost:3000/api/auth"
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=