-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (53 loc) · 2.55 KB
/
.env.example
File metadata and controls
65 lines (53 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
# =============================================================================
# ShopFlow - Environment Variables Template
# =============================================================================
# Copy this file to .env and fill in your actual values
# Never commit .env file to version control!
# =============================================================================
# Supabase Configuration
# =============================================================================
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key-here
SUPABASE_SERVICE_KEY=your-service-key-here
# =============================================================================
# API Configuration
# =============================================================================
# Backend API URL (change to your production domain)
NEXT_PUBLIC_API_URL=http://localhost:8001
# Bridge API Configuration
NEXT_PUBLIC_BRIDGE_URL=http://localhost:8001
BRIDGE_API_KEY=your-bridge-api-key
# JWT Secret for authentication
JWT_SECRET=your-jwt-secret-key-here
# =============================================================================
# Camera Configuration (RTSP)
# =============================================================================
# RTSP URL for your camera (format: rtsp://username:password@ip:port/stream)
CAMERA_RTSP_URL=rtsp://admin:password@192.168.1.100:554/stream
# Processing FPS (lower = less CPU usage)
CAMERA_FPS_PROCESS=5
# =============================================================================
# YOLO Configuration
# =============================================================================
YOLO_MODEL=yolo11n.pt
YOLO_CONFIDENCE=0.5
# =============================================================================
# AI Features
# =============================================================================
# Enable/disable face recognition (requires more resources)
FACE_RECOGNITION_ENABLED=false
# =============================================================================
# Deployment Environment
# =============================================================================
# Environment: development, staging, production
ENVIRONMENT=production
# Production domain (for CORS configuration)
PRODUCTION_DOMAIN=your-domain.com
# Node environment
NODE_ENV=production
# =============================================================================
# Optional: Monitoring & Analytics
# =============================================================================
# Add your monitoring service keys here if needed
# SENTRY_DSN=
# DATADOG_API_KEY=