diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..4f6d752 --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,47 @@ +[config] +workspace = false + +[tasks.build] +clear = true +workspace = false +category = "Build" +description = "Runs the rust compiler for both server and UI" +dependencies = ["build-server", "build-ui"] + +[tasks.build-server] +category = "Build" +description = "Runs the rust compiler for the server" +command = "cargo" +args = ["build", "-p", "stoptime_server"] + +[tasks.build-ui] +category = "Build" +description = "Runs the rust compiler via cargo-web for the UI" +install-crate = "cargo-web" +command = "cargo" +args = ["web", "build", "-p", "stoptime_ui", "--target", "wasm32-unknown-unknown"] + +[tasks.copy-wasm-assets] +description = "Copies the WASM assets generated by cargo-web to the static assets directory" +command = "cp" +args = [ + "target/wasm32-unknown-unknown/debug/stoptime_ui.js", + "target/wasm32-unknown-unknown/debug/stoptime_ui.wasm", + "ui/static" +] +dependencies = ["build-ui"] + +[tasks.run] +clear = true +workspace = false +description = "Runs the server" +dependencies = ["copy-wasm-assets"] +command = "cargo" +args = ["run", "-p", "stoptime_server"] + +[tasks.test] +clear = true +workspace = false +description = "Run all available tests for the server" +command = "cargo" +args = ["test", "-p", "stoptime_server", "--all-features"]