-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
38 lines (31 loc) · 1.55 KB
/
.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
# -----------------------------------------------------------------------------
# Backend Config
# -----------------------------------------------------------------------------
HOST="0.0.0.0"
PORT=4343
# -----------------------------------------------------------------------------
# Frontend Config
# -----------------------------------------------------------------------------
NEXT_PUBLIC_URL="http://localhost:3000"
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
DATABASE_URL="postgresql://postgres:my-secure-password@localhost:5432/api?schema=public"
# -----------------------------------------------------------------------------
# JWT Secret
# -----------------------------------------------------------------------------
JWT_SECRET=""
# Linux: `openssl rand -hex 64` or go to https://generate-secret.now.sh/64
# -----------------------------------------------------------------------------
# Session Secret
# -----------------------------------------------------------------------------
SESSION_SECRET=""
# -----------------------------------------------------------------------------
# Google oAuth
# -----------------------------------------------------------------------------
GOOGLE_OAUTH_CLIENT_ID="g-id-secret"
GOOGLE_OAUTH_CLIENT_SECRET="g-id-secret"
# -----------------------------------------------------------------------------
# Resend
# -----------------------------------------------------------------------------
RESEND_API_KEY="re_secret"