-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
43 lines (34 loc) · 1.01 KB
/
example.env
File metadata and controls
43 lines (34 loc) · 1.01 KB
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
39
40
41
42
43
# Node environment
NODE_ENV=
# MongoDB connection string
MONGO_URI=
# The URL of the frontend application
FRONTEND_URL=
# Secret keys for session management and NextAuth.js
SESSION_SECRET=
JWT_SECRET=
# NextAuth.js secret for signing and encrypting session tokens
NEXTAUTH_SECRET=
NEXTAUTH_URL= # Set to http://localhost:5000 or your API URL
# Next Public
NEXT_PUBLIC_ENV= # Set to development or production
NEXT_PUBLIC_API_URL= # Set to http://localhost:5000 or your API URL
NEXT_PUBLIC_GITHUB_CLIENT_ID=
# Google OAuth credentials
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# GitHub OAuth credentials
# Note: Do not confuse these with GitHub App client secrets, which are used for GitHub Apps authentication. OAuth credentials are specifically for standard OAuth flows, not for GitHub Apps.
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
# GitHub App credentials
GITHUB_APP_ID=
GITHUB_APP_SLUG=
GITHUB_PRIVATE_KEY=
# SMTP server configuration for sending emails
SMTP_HOST=
SMTP_PORT=
SMTP_USER=
SMTP_PASS=
SMTP_FROM=
CUSTOM_DOMAIN=