Skip to content

Instantly share code, notes, and snippets.

@8de2fdb0
8de2fdb0 / Backend_Makefile.toml
Created June 27, 2025 05:48
emulating cargo-leptos using cargo-make
[tasks.build-developoment]
command = "cargo"
args = ["build", "--bin=bastiond", "--no-default-features"]
[tasks.build-production]
condition = { profiles = ["production"] }
command = "cargo"
args = ["build", "--bin=backend", "--release", "--features=ssr"]
[tasks.build]