feat: Add Debian packaging script, enhance configuration loading with multi-path support, and enable config saving.

This commit is contained in:
Zin Bo Thit
2026-02-10 13:48:21 +06:30
parent 3bd86901f7
commit 476977dc83
6 changed files with 446 additions and 194 deletions

View File

@@ -1,7 +1,9 @@
[package]
name = "C2LInspecz"
name = "c2linspecz"
version = "0.1.0"
edition = "2024"
authors = ["Code2Lab Team <support@code2lab.com>"]
description = "Automated POS Diagnostic & Health Monitoring Tool"
[dependencies]
eframe = "0.33.3"
@@ -9,3 +11,12 @@ serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sysinfo = "0.38.0"
tokio = { version = "1.49.0", features = ["full"] }
[package.metadata.deb]
maintainer = "Code2Lab support <support@code2lab.com>"
copyright = "2024, Code2Lab"
license-file = ["C2LInspecz.md", "0"]
assets = [
["target/release/c2linspecz", "/usr/bin/c2linspecz", "755"],
["config.json", "/etc/c2linspecz/config.json", "644"]
]