-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 755 Bytes
/
.env.example
File metadata and controls
31 lines (25 loc) · 755 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
# Environment Configuration
ENVIRONMENT=development
# Neo4j Database
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=your_neo4j_password_here
# Metrics Database
METRICS_TYPE=sqlite
METRICS_PATH=./data/metrics.db
SQLITE_DB_PATH=./data/metrics.db
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
API_CORS_ORIGINS=http://localhost:4200
# Security
SECURITY_JWT_SECRET=your_jwt_secret_key_here_change_in_production
SECURITY_TOKEN_EXPIRY=3600
JWT_SECRET=your_jwt_secret_key_here_change_in_production
# Rule Engine
RULES_CONFIG_PATH=./config/rules.json
RULES_AUTO_RELOAD=true
# Docker Configuration (for docker-compose)
# Uncomment and set these when using Docker
# NEO4J_PASSWORD=secure_password_here
# JWT_SECRET=secure_jwt_secret_here