-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
64 lines (53 loc) · 2.41 KB
/
.env.example
File metadata and controls
64 lines (53 loc) · 2.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# ==============================================================================
# ZeroGravity Frontend Environment Variables Template
# ==============================================================================
#
# This file contains all required environment variables for the application.
# Copy this file to create environment-specific .env files:
#
# - .env.production (for production deployment)
# - .env.development (for development deployment)
# - .env.local (for local development)
#
# IMPORTANT: Never commit actual .env files to git!
#
# ==============================================================================
# ==============================================================================
# API Configuration
# ==============================================================================
# Backend API base URL
# Production: https://api.zerogv.com
# Development: https://api-dev.zerogv.com
# Local: http://localhost:8080
NEXT_PUBLIC_API_BASE_URL=
# ==============================================================================
# Auth.js v5 Configuration
# ==============================================================================
# Auth secret key (generate with: openssl rand -base64 32 or npx auth secret)
# MUST be different for production and development
AUTH_SECRET=
# Auth URL (application URL - auto-inferred in v5, but recommended to set)
# Production: https://zerogv.com
# Development: https://dev.zerogv.com
# Local: http://localhost:3000
AUTH_URL=
# Trust host header (required for proxied environments)
AUTH_TRUST_HOST=true
# ==============================================================================
# OAuth Providers (Auth.js v5 standard)
# ==============================================================================
# Google OAuth
# Obtain from: https://console.cloud.google.com/apis/credentials
AUTH_GOOGLE_ID=
AUTH_GOOGLE_SECRET=
# Kakao OAuth
# Obtain from: https://developers.kakao.com/console/app
AUTH_KAKAO_ID=
AUTH_KAKAO_SECRET=
# ==============================================================================
# OCI Object Storage (Optional)
# ==============================================================================
# OCI Object Storage bucket URL for static assets
# Format: https://objectstorage.{region}.oraclecloud.com/n/{namespace}/b/{bucket}/o
# Example: https://objectstorage.ap-chuncheon-1.oraclecloud.com/n/axabcd123/b/zerogravity-static/o
NEXT_PUBLIC_OBJECT_STORAGE_URL=