-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
38 lines (29 loc) · 1007 Bytes
/
.env.example
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
26
27
28
29
30
31
32
33
34
35
36
37
38
# When adding additional environment variables, the schema in "/src/env.js"
# should be updated accordingly.
DATABASE_URL="postgresql://username:password@host:port/db_name"
# For creating database using docker-compose
POSTGRES_PASSWORD="some-password"
POSTGRES_USER="admin"
POSTGRES_DB="evento"
# openssl rand -base64 32
# https://next-auth.js.org/configuration/options#secret
NEXTAUTH_SECRET=""
NEXTAUTH_URL="http://localhost:3000"
# Next Auth Discord Provider
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
EMAIL_SERVER_USER="[email protected]"
EMAIL_SERVER_PASSWORD="password"
EMAIL_SERVER_HOST="smtp.gmail.com"
EMAIL_SERVER_PORT=465
EMAIL_FROM="[email protected]"
NODE_ENV="development"
WS_PORT=3001
NEXT_PUBLIC_WS_URL="ws://localhost:3001"
IMAGEKIT_PUBLIC_KEY = ""
IMAGEKIT_PRIVATE_KEY = ""
IMAGEKIT_URL_ENDPOINT = "https://ik.imagekit.io/"
# PYTHON_EXECUTABLE_PATH="\path\to\python\executable"
PYTHON_EXECUTABLE_PATH="venv\Scripts\python"
# prisma seed emails
EMAILS="['[email protected]']"