test page

This commit is contained in:
2025-11-29 12:03:05 +01:00
parent c83f0a1c34
commit 5d3f64f558
10 changed files with 1195 additions and 133 deletions
+11
View File
@@ -1,3 +1,5 @@
use std::process::Command;
extern crate prost_build;
fn main() -> Result<(), std::io::Error> {
@@ -11,5 +13,14 @@ fn main() -> Result<(), std::io::Error> {
);
cfg.compile_protos(&["../protobuf/items.proto"], &["../protobuf"])?;
Command::new("pnpm")
.arg("run")
.arg("build")
.current_dir("../frontend")
.spawn()
.unwrap()
.wait()
.unwrap();
Ok(())
}