42 lines
682 B
INI
42 lines
682 B
INI
|
[APP]
|
||
|
name = Body Balance Evaluation System
|
||
|
version = 1.0.0
|
||
|
debug = false
|
||
|
log_level = INFO
|
||
|
|
||
|
[SERVER]
|
||
|
host = 127.0.0.1
|
||
|
port = 5000
|
||
|
cors_origins = *
|
||
|
|
||
|
[DATABASE]
|
||
|
path = data/balance_system.db
|
||
|
backup_interval = 24
|
||
|
max_backups = 7
|
||
|
|
||
|
[DEVICES]
|
||
|
camera_index = 0
|
||
|
camera_width = 640
|
||
|
camera_height = 480
|
||
|
camera_fps = 30
|
||
|
imu_port = COM3
|
||
|
pressure_port = COM4
|
||
|
|
||
|
[DETECTION]
|
||
|
default_duration = 60
|
||
|
sampling_rate = 30
|
||
|
balance_threshold = 0.2
|
||
|
posture_threshold = 5.0
|
||
|
|
||
|
[DATA_PROCESSING]
|
||
|
filter_window = 5
|
||
|
outlier_threshold = 2.0
|
||
|
chart_dpi = 300
|
||
|
export_format = csv
|
||
|
|
||
|
[SECURITY]
|
||
|
secret_key = 026efbf83a2fe101f168780740da86bf1c9260625458e6782738aa9cf18f8e37
|
||
|
session_timeout = 3600
|
||
|
max_login_attempts = 5
|
||
|
|