- netboot-base.nix with SSH key auth - Launch scripts for node01/02/03 - Node configuration.nix and disko.nix - Nix modules for first-boot automation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
14 lines
414 B
Rust
14 lines
414 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
let protoc_path = protoc_bin_vendored::protoc_bin_path()?;
|
|
std::env::set_var("PROTOC", protoc_path);
|
|
|
|
let proto = "../../proto/iam.proto";
|
|
|
|
tonic_build::configure()
|
|
.build_server(true)
|
|
.build_client(true)
|
|
.compile(&[proto], &["../../proto"])?;
|
|
|
|
println!("cargo:rerun-if-changed=../../proto/iam.proto");
|
|
Ok(())
|
|
}
|