-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 738 Bytes
/
.env.example
File metadata and controls
29 lines (23 loc) · 738 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 Template
# Copy this file to .env and fill in your actual values
# API Keys (if your project uses external APIs)
# API_KEY=your-api-key-here
# SECRET_KEY=your-secret-key-here
# Database Configuration (if applicable)
# DATABASE_URL=postgresql://user:password@localhost:5432/dbname
# DB_HOST=localhost
# DB_PORT=5432
# DB_NAME=your_database
# DB_USER=your_user
# DB_PASSWORD=your_password
# External Services (if applicable)
# REDIS_URL=redis://localhost:6379
# ELASTICSEARCH_URL=http://localhost:9200
# Application Configuration
# DEBUG=false
# LOG_LEVEL=info
# PORT=3000
# Feature Flags (if applicable)
# ENABLE_FEATURE_X=false
# Add your project-specific environment variables below
# [Your variables here]