-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
58 lines (50 loc) · 1.73 KB
/
.env.template
File metadata and controls
58 lines (50 loc) · 1.73 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
# ===============================================
# PII Evaluation POC - Environment Configuration
# ===============================================
# Copy this file to .env and update the values for your environment
# ===============================================
# Vault Configuration
# ===============================================
VAULT_ADDR=https://127.0.0.1:8200
VAULT_TOKEN=root
VAULT_SKIP_VERIFY=true
# ===============================================
# PostgreSQL Database Configuration
# ===============================================
DB_USER=postgres
DB_HOST=localhost
DB_DATABASE=pii
DB_PASSWORD=<pwd>
DB_PORT=5432
# ===============================================
# Redis Configuration
# ===============================================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_HMAC_SECRET=pii-search-secret-key-2024
# ===============================================
# PII Data Generation Configuration
# ===============================================
# Number of PII records to generate for testing
NUMBER_OF_PEOPLE=100
# Data distribution settings (optional)
CAUCASIAN_PERCENTAGE=30
ASIAN_PERCENTAGE=35
INDIAN_PERCENTAGE=35
# ===============================================
# Performance Test Configuration
# ===============================================
# Test iterations for performance benchmarks
PERF_TEST_ITERATIONS=10
PERF_TEST_WARMUP_ROUNDS=3
# ===============================================
# GDPR Compliance Configuration
# ===============================================
# Default retention period (in days)
DEFAULT_RETENTION_DAYS=365
COMPLIANCE_VERSION=1.0
# ===============================================
# Logging Configuration
# ===============================================
LOG_LEVEL=info
ENABLE_PERFORMANCE_LOGGING=true