-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
59 lines (43 loc) · 1.43 KB
/
Copy path.env.example
File metadata and controls
59 lines (43 loc) · 1.43 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
# Varlord Development Environment Variables
# Copy this file to .env and fill in the values
# DO NOT commit the actual .env file to git
# ========================================
# etcd Configuration (for integration tests)
# ========================================
# Note: For local development, you can skip TLS by not setting these
# For production, always use TLS!
# etcd server host
ETCD_HOST=127.0.0.1
# etcd server port
ETCD_PORT=2379
# CA certificate path (for TLS)
# Leave empty to disable TLS (not recommended for production)
ETCD_CA_CERT=./cert/ca.cert.pem
# Client key path (for TLS/mTLS)
ETCD_CERT_KEY=./cert/client.key.pem
# Client certificate path (for TLS/mTLS)
ETCD_CERT_CERT=./cert/client.cert.pem
# etcd authentication (optional)
# ETCD_USER=username
# ETCD_PASSWORD=password
# ========================================
# Application Configuration
# ========================================
# Log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
LOG_LEVEL=INFO
# Enable debug mode
DEBUG=false
# ========================================
# Testing Configuration
# ========================================
# Skip integration tests (set to "1" to skip)
PYTEST_SKIP_INTEGRATION=
# Coverage threshold (percentage)
COVERAGE_THRESHOLD=80
# ========================================
# Development Tools
# ========================================
# Enable hot reload (for development)
HOT_RELOAD=false
# Port for development server
DEV_PORT=8000