-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_env.example
More file actions
30 lines (22 loc) · 752 Bytes
/
_env.example
File metadata and controls
30 lines (22 loc) · 752 Bytes
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
# Environment Variables Configuration
# Copy this file to .env and update with your values if needed
# Application Settings
NODE_ENV=production
# API Settings (if you add APIs in the future)
# API_URL=https://api.example.com
# API_KEY=your_api_key_here
# Analytics (if you add tracking)
# GA_TRACKING_ID=UA-XXXXXXXXX-X
# GTM_ID=GTM-XXXXXXX
# Feature Flags (if you add feature toggles)
# ENABLE_ANALYTICS=false
# ENABLE_DARK_MODE=true
# Build Settings
# BUILD_DATE=
# BUILD_VERSION=1.0.0
# Deployment
# DEPLOYMENT_ENV=production
# DEPLOYMENT_URL=
# Note: This is a static site, so most environment variables
# would need to be injected at build time if using a build tool.
# For pure static sites, configuration is typically done in JavaScript.