harmony/harmony-rs
Jean-Gabriel Gill-Couture f1f2c796c4 feat(widget): add help widget and improve score widget
- Introduced a new `Help` widget to display user instructions.
- Improved the `ScoreListWidget` by removing unnecessary execution rendering methods and simplifying state transitions.
- Cleaned up unused imports and refactored code for better readability.
2025-01-29 15:34:16 -05:00
..
demo fix: update Score trait implementation and TUI initialization 2025-01-25 12:36:22 -05:00
harmony feat(widget): add help widget and improve score widget 2025-01-29 15:34:16 -05:00
harmony_macros feat(harmony_macros): add yaml macro to validate YAML input 2025-01-22 10:21:08 -05:00
harmony_tui feat(widget): add help widget and improve score widget 2025-01-29 15:34:16 -05:00
harmony_types fix(dhcp): remove unused IP range check and simplify DnsConfig 2025-01-12 15:32:14 -05:00
opnsense-config chore: Ran cargo fmt on all code 2025-01-24 10:50:38 -05:00
opnsense-config-xml feat(k8s): add Kubernetes deployment resource handling 2025-01-24 10:44:27 -05:00
.gitignore chore: Move client setups to private repos that can be cloned manually by the developer 2024-09-13 16:19:49 -04:00
Cargo.lock feat: harmony terminal ui can now browse scores and (almost) launch them 2025-01-28 16:51:58 -05:00
Cargo.toml feat(harmony_tui): add initial TUI implementation with ratatui and crossterm 2025-01-24 11:30:01 -05:00
LICENSE chore(harmony): Use Cargo workspaces for core harmony and client specific implementation 2024-09-06 12:17:23 -04:00
README.md feat: Significant refactoring to introduce the HostBinding struct that has for sole purpose to bind a PhysicalHost and LogicalHost together. The PhysicalHost contains everything hardware up to the mac address, LogicalHost ip address, name and above 2024-09-23 00:30:27 -04:00

Due to the current setup being a mix of separate repositories with gitignore and rust workspace, a few options are required for cargo-watch to have the desired behavior :

RUST_LOG=info cargo watch --ignore-nothing -w harmony -w private_repos/ -x 'run --bin nationtech' 

This will run the nationtech bin (likely private_repos/nationtech/src/main.rs) on any change in the harmony or private_repos folders.