first commit

This commit is contained in:
Elias Renman
2025-03-16 21:54:32 +01:00
commit c39af75112
35 changed files with 2524 additions and 0 deletions

13
build.rs Normal file
View File

@@ -0,0 +1,13 @@
use std::process::Command;
fn main() {
let status = Command::new("bun")
.args(["run", "build"])
.current_dir("web") // Change working directory to "web"
.status()
.expect("Failed to run bun build");
if !status.success() {
panic!("Bun build failed!");
}
}