-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
37 lines (30 loc) · 748 Bytes
/
example.env
File metadata and controls
37 lines (30 loc) · 748 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
30
31
32
33
34
35
36
37
# Example Environment Configuration
# This is an example .env file that can be imported using EVM
# Application Settings
APP_NAME=My Application
APP_VERSION=1.0.0
APP_ENVIRONMENT=development
# Database Configuration
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_NAME=mydb
DATABASE_USER=dbuser
DATABASE_PASSWORD=secretpass
# API Configuration
API_URL=http://localhost:3000/api
API_KEY=your_api_key_here
API_TIMEOUT=30000
# Feature Flags
FEATURE_A_ENABLED=true
FEATURE_B_ENABLED=false
DEBUG_MODE=true
# Logging
LOG_LEVEL=debug
LOG_FILE=/var/log/app.log
# External Services
REDIS_URL=redis://localhost:6379/0
MEMCACHED_HOST=localhost
MEMCACHED_PORT=11211
# Security
JWT_SECRET=your_jwt_secret_here
ENCRYPTION_KEY=your_encryption_key_here