File size: 598 Bytes
3647b02
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Backend API Configuration
# The base URL of your backend server (without protocol)
NEXT_PUBLIC_BACKEND_BASE_URL=http://localhost
# The port your backend server is running on
NEXT_PUBLIC_BACKEND_PORT=8000
# API version to use (v1 or v2)
NEXT_PUBLIC_API_VERSION=v2

# Runtime Configuration
# Enable dry run mode (true/false)
NEXT_PUBLIC_DRY_RUN=false
# Enable V2 API (true/false)
NEXT_PUBLIC_ENABLE_V2_API=true

# Frontend Configuration
# The port for the frontend development server
NEXT_PUBLIC_FRONTEND_PORT=3000
# The host for the frontend development server
NEXT_PUBLIC_FRONTEND_HOST=localhost