-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 682 Bytes
/
.env.example
File metadata and controls
29 lines (24 loc) · 682 Bytes
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
# APP
NODE_ENV="development"
NEXT_PUBLIC_APP_URL="https://localhost:3000"
# AUTHENTICATION (@ NEXT-AUTH)
# Secret can be generated with `openssl rand -base64 32`
# Follow instructions at https://codevoweb.com/nextjs-add-google-and-github-oauth2-using-nextauth-js/ to obtain client ids and secrets
NEXTAUTH_URL="https://localhost:3000"
AUTH_SECRET=""
GOOGLE_ID=""
GOOGLE_SECRET=""
GITHUB_ID=""
GITHUB_SECRET=""
# DATABASE (POSTGRES @ NEON)
DATABASE_URI=""
# STORAGE (@ UPLOADTHING)
UPLOADTHING_SECRET=""
UPLOADTHING_APP_ID=""
# EMAIL (@ RESEND)
RESEND_API_KEY=""
RESEND_EMAIL_FROM=""
RESEND_EMAIL_TO=""
RESEND_HOST="smtp.resend.com"
RESEND_USERNAME="resend"
RESEND_PORT="465"