| Crates.io | hightower-node |
| lib.rs | hightower-node |
| version | 0.1.2 |
| created_at | 2025-10-09 18:52:20.154206+00 |
| updated_at | 2025-10-13 14:16:16.19944+00 |
| description | Hightower node service |
| homepage | |
| repository | https://github.com/chrishayen/hightower-node |
| max_upload_size | |
| id | 1876074 |
| size | 97,863 |
Hightower node client - connects to a Hightower gateway and joins the mesh network.
ht-node [OPTIONS]
--kv <DIR> - Path to the key-value data directory (optional, defaults to temporary directory)HT_AUTH_KEY - Required. Authentication token for connecting to the gatewayRUST_LOG - Log level (default: info). Example values: debug, info, warn, errorHT_DEFAULT_USER - Default admin username (default: admin)HT_DEFAULT_PASSWORD - Default admin password (default: admin)# Run with authentication token
HT_AUTH_KEY=your-auth-token ht-node
# Run with custom KV directory and debug logging
HT_AUTH_KEY=your-auth-token RUST_LOG=debug ht-node --kv /var/lib/hightower-node
# Run with custom gateway URL (stored in KV as gateway/url key)
HT_AUTH_KEY=your-auth-token ht-node --kv /path/to/data
cargo build --release
cargo test