-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (34 loc) · 891 Bytes
/
.env.example
File metadata and controls
44 lines (34 loc) · 891 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
38
39
40
41
42
43
44
# 🧠 Neural Nexus - Environment Variables Example
# Environment
NEURAL_NEXUS_ENV=development
# Orchestrator
ORCHESTRATOR_BIND_ADDRESS=0.0.0.0:8080
GRPC_BIND_ADDRESS=0.0.0.0:50051
HTTP_BIND_ADDRESS=0.0.0.0:8080
# Database
DATABASE_URL=postgresql://postgres:password@localhost:5432/neural_nexus
DATABASE_MAX_CONNECTIONS=10
# Redis
REDIS_URL=redis://localhost:6379
REDIS_MAX_CONNECTIONS=10
# MQTT
MQTT_BROKER_URL=mqtt://localhost:1883
MQTT_USERNAME=neural_nexus
MQTT_PASSWORD=change_me_in_production
# Security
JWT_SECRET=your-256-bit-secret-change-in-production
API_KEY_REQUIRED=false
# Node Settings (for edge nodes)
NODE_ID=
NODE_TYPE=generic
NODE_LOCATION=
ORCHESTRATOR_URL=http://localhost:8080
# Models
MODEL_STORAGE_PATH=./data/models
MODEL_AUTO_DOWNLOAD=true
# Monitoring
PROMETHEUS_ENABLED=true
PROMETHEUS_BIND_ADDRESS=0.0.0.0:9090
# Logging
LOG_LEVEL=info
LOG_FORMAT=json