-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
30 lines (25 loc) · 883 Bytes
/
.env.example
File metadata and controls
30 lines (25 loc) · 883 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
# Database Configuration
DATABASE_URL=postgres://postgres:postgres@localhost:5432/face_db
# PostgreSQL Settings (for Docker Compose)
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=face_db
# API Configuration
PORT=3000
# Face Detection Configuration
# Confidence threshold for face detection (0.0 - 1.0)
# Lower values = more detections but more false positives
# Higher values = fewer detections but higher accuracy
FACE_DETECTION_CONFIDENCE_THRESHOLD=0.8
# MinIO S3 Configuration
# MinIO root credentials (for Docker Compose)
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin123
# S3 Client Configuration
# Endpoint: Use http://minio:9000 inside Docker, http://localhost:9000 for local testing
S3_ENDPOINT=http://localhost:9000
S3_BUCKET=facevector-engine
S3_ACCESS_KEY=minioadmin
S3_SECRET_KEY=minioadmin123
S3_REGION=us-east-1
S3_FORCE_PATH_STYLE=true