-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
89 lines (69 loc) · 2.27 KB
/
.env.example
File metadata and controls
89 lines (69 loc) · 2.27 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# CraftPilot AI - Environment Variables Template
# Copy this file to .env and fill in your actual values
# ================================
# 🔐 SECURITY CREDENTIALS
# ================================
# Redis Configuration
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=YOUR_REDIS_PASSWORD_HERE
# Eureka Server Security
EUREKA_USERNAME=craftpilot
EUREKA_PASSWORD=YOUR_EUREKA_PASSWORD_HERE
# ================================
# 🤖 AI SERVICE CREDENTIALS
# ================================
# OpenRouter API Key (for LLM services)
OPENROUTER_API_KEY=YOUR_OPENROUTER_API_KEY_HERE
# ================================
# 🔥 FIREBASE CONFIGURATION
# ================================
# Firebase Project Configuration
FIREBASE_PROJECT_ID=your-firebase-project-id
FIREBASE_CONFIG_PATH=/etc/gcp/credentials/gcp-credentials.json
GOOGLE_APPLICATION_CREDENTIALS=/etc/gcp/credentials/gcp-credentials.json
# ================================
# 🐳 INFRASTRUCTURE
# ================================
# Service Discovery
EUREKA_HOST=eureka-server
EUREKA_PORT=8761
# Message Broker
KAFKA_BOOTSTRAP_SERVERS=kafka:9092
KAFKA_ENABLED=true
# ================================
# 🌍 ENVIRONMENT SETTINGS
# ================================
# Spring Profiles
SPRING_PROFILES_ACTIVE=prod
# Application URLs
USER_MEMORY_SERVICE_URL=http://user-memory-service:8067
LIGHTHOUSE_SERVICE_URL=http://lighthouse-service:8085
# ================================
# 📊 MONITORING
# ================================
# Logging Level
LOGGING_LEVEL_ROOT=INFO
LOGGING_LEVEL_CRAFTPILOT=DEBUG
# ================================
# 🔧 DEVELOPMENT SETTINGS
# ================================
# These settings are only for development
# In production, use proper secret management
# Development Redis (if using local)
# REDIS_HOST=localhost
# REDIS_PORT=6379
# Development Eureka (if using local)
# EUREKA_HOST=localhost
# EUREKA_PORT=8761
# ================================
# 🚨 SECURITY NOTES
# ================================
#
# 1. Never commit this file with real values to version control
# 2. Use strong, unique passwords for all services
# 3. In production, use proper secret management (K8s secrets, etc.)
# 4. Rotate credentials regularly
# 5. Use least privilege principle for service accounts
#
# ================================