-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
59 lines (51 loc) · 2.15 KB
/
Copy path.env.example
File metadata and controls
59 lines (51 loc) · 2.15 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
# ============================================================================
# FIVUCSAS Mobile App - Environment Variables
# ============================================================================
# ============================================================================
# API Endpoints
# ============================================================================
API_BASE_URL=http://localhost:8080/api/v1
BIOMETRIC_API_URL=http://localhost:8001/api/v1
API_TIMEOUT=30000
# For Android Emulator use: http://10.0.2.2:8080/api/v1
# For iOS Simulator use: http://localhost:8080/api/v1
# For physical devices use your machine's IP: http://192.168.1.100:8080/api/v1
# ============================================================================
# Application Configuration
# ============================================================================
APP_NAME=FIVUCSAS
ENVIRONMENT=development
DEBUG_MODE=true
VERSION=1.0.0
BUILD_NUMBER=1
# ============================================================================
# Camera Configuration
# ============================================================================
CAMERA_RESOLUTION=medium
CAMERA_FPS=30
ENABLE_FLASH=false
# ============================================================================
# Biometric Puzzle Configuration
# ============================================================================
PUZZLE_MIN_STEPS=3
PUZZLE_MAX_STEPS=5
PUZZLE_TIMEOUT_SECONDS=30
PUZZLE_FRAME_SKIP=2
# ============================================================================
# Features
# ============================================================================
ENABLE_BIOMETRIC_AUTH=true
ENABLE_OFFLINE_MODE=true
ENABLE_ANALYTICS=false
ENABLE_CRASH_REPORTING=false
# ============================================================================
# Storage
# ============================================================================
CACHE_SIZE_MB=50
MAX_OFFLINE_USERS=100
# ============================================================================
# Security
# ============================================================================
ENABLE_SSL_PINNING=false
ENABLE_ROOT_DETECTION=false
ENABLE_JAILBREAK_DETECTION=false