midokhaled927 commited on
Commit
7d8a0f1
·
verified ·
1 Parent(s): 291d4dc

Create .env.example

Browse files
Files changed (1) hide show
  1. .env.example +30 -0
.env.example ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AEFRS Configuration
2
+ APP_NAME="AEFRS Ultimate"
3
+ ENVIRONMENT=production
4
+ DEBUG=false
5
+
6
+ # API Settings
7
+ API_HOST=0.0.0.0
8
+ API_PORT=7860
9
+ RATE_LIMIT=100
10
+
11
+ # Model Settings
12
+ DETECTION_MODEL_PATH=models/face_detection.tflite
13
+ RECOGNITION_MODEL_PATH=models/face_recognition.tflite
14
+ SIMILARITY_THRESHOLD=0.6
15
+
16
+ # Database
17
+ DATABASE_PATH=database/identities.db
18
+ BACKUP_ENABLED=true
19
+
20
+ # Vector Search
21
+ VECTOR_SEARCH_ENABLED=true
22
+ VECTOR_DIMENSION=512
23
+
24
+ # Security (optional)
25
+ JWT_SECRET_KEY=your-secret-key-here
26
+ API_KEY=your-api-key-here
27
+
28
+ # Monitoring
29
+ LOG_LEVEL=INFO
30
+ METRICS_ENABLED=true