-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
54 lines (42 loc) · 1.49 KB
/
Copy path.env.example
File metadata and controls
54 lines (42 loc) · 1.49 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
# Example environment configuration
# Copy this file to .env and update with your values
# IMPORTANT: Never commit .env file with real credentials to version control
# AutoGen Configuration
AUTOGEN_API_ENDPOINT=https://api.openai.com/v1
# Replace with your actual OpenAI API key
OPENAI_API_KEY=your_openai_api_key_here
# AWS Configuration
AWS_ACCESS_KEY_ID=your_aws_access_key
AWS_SECRET_ACCESS_KEY=your_aws_secret_key
AWS_DEFAULT_REGION=us-east-1
# Azure Configuration (if using Azure)
AZURE_SUBSCRIPTION_ID=your_subscription_id
AZURE_TENANT_ID=your_tenant_id
AZURE_CLIENT_ID=your_client_id
AZURE_CLIENT_SECRET=your_client_secret
# GCP Configuration (if using GCP)
GOOGLE_CLOUD_PROJECT=your_project_id
GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json
# Sentinel Project Configuration
SENTINEL_ENVIRONMENT=development
LOG_LEVEL=INFO
# Sentry-Specific Configuration (customize per sentry)
SENTRY_NAME=Apollo
INDUSTRY=Healthcare
# Database Configuration (if needed)
DATABASE_URL=postgresql://user:password@localhost:5432/sentinel
POSTGRES_PASSWORD=your_secure_postgres_password
# Redis Configuration (for caching)
REDIS_URL=redis://localhost:6379/0
# Monitoring and Alerting
ALERT_EMAIL=security-team@example.com
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
# Security Settings
ENABLE_ENCRYPTION=true
SECRET_KEY=your_secret_key_for_encryption
# API Rate Limiting
RATE_LIMIT_PER_MINUTE=100
# Feature Flags
ENABLE_ML_ANALYSIS=true
ENABLE_AUTO_RESPONSE=false
ENABLE_THREAT_INTEL_FEED=true