-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
68 lines (54 loc) · 2.46 KB
/
.env.example
File metadata and controls
68 lines (54 loc) · 2.46 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
65
66
67
68
# Environment variables for FTV Frontend
# Copy this file to .env.local and customize the values for your environment
# =============================================================================
# ENVIRONMENT CONFIGURATION
# =============================================================================
# API Configuration - Choose based on your environment
# Development: http://localhost:8000
# Staging: https://api-staging.szlg.info
# Production: https://ftvapi.szlg.info
NEXT_PUBLIC_API_URL=https://ftvapi.szlg.info
NEXT_PUBLIC_BACKEND_URL=https://ftvapi.szlg.info
# Environment Type (development, staging, production)
# This overrides NODE_ENV for frontend-specific environment detection
NEXT_PUBLIC_NODE_ENV=production
# =============================================================================
# DEBUG AND LOGGING
# =============================================================================
# Enable debug mode (true/false)
NEXT_PUBLIC_DEBUG=false
# Log level (debug, info, warn, error)
NEXT_PUBLIC_LOG_LEVEL=error
# =============================================================================
# CONTACT INFORMATION
# =============================================================================
NEXT_PUBLIC_CONTACT_EMAIL=balla.botond.23f@szlgbp.hu
NEXT_PUBLIC_DEVELOPER_EMAIL=balla.botond.23f@szlgbp.hu
NEXT_PUBLIC_SUPPORT_EMAIL=balla.botond.23f@szlgbp.hu
NEXT_PUBLIC_EMERGENCY_CONTACT=balla.botond.23f@szlgbp.hu
# =============================================================================
# ORGANIZATION DETAILS
# =============================================================================
NEXT_PUBLIC_ORG_NAME=FTV
NEXT_PUBLIC_WEBSITE_URL=https://ftv.szlg.info
# =============================================================================
# ENVIRONMENT-SPECIFIC EXAMPLES
# =============================================================================
# For Development (.env.local):
# NEXT_PUBLIC_API_URL=http://localhost:8000
# NEXT_PUBLIC_BACKEND_URL=http://localhost:8000
# NEXT_PUBLIC_NODE_ENV=development
# NEXT_PUBLIC_DEBUG=true
# NEXT_PUBLIC_LOG_LEVEL=debug
# For Staging:
# NEXT_PUBLIC_API_URL=https://api-staging.szlg.info
# NEXT_PUBLIC_BACKEND_URL=https://api-staging.szlg.info
# NEXT_PUBLIC_NODE_ENV=staging
# NEXT_PUBLIC_DEBUG=true
# NEXT_PUBLIC_LOG_LEVEL=info
# For Production:
# NEXT_PUBLIC_API_URL=https://ftvapi.szlg.info
# NEXT_PUBLIC_BACKEND_URL=https://ftvapi.szlg.info
# NEXT_PUBLIC_NODE_ENV=production
# NEXT_PUBLIC_DEBUG=false
# NEXT_PUBLIC_LOG_LEVEL=error