mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 11:04:40 -05:00
* build(examples): support process management * build(examples): manage trunk * build(examples): manage cargo leptos * doc(examples): add run instructions
14 lines
294 B
TOML
14 lines
294 B
TOML
extend = [
|
|
{ path = "./client-process.toml" },
|
|
{ path = "./server-process.toml" },
|
|
]
|
|
|
|
[tasks.start]
|
|
dependencies = ["maybe-start-server", "maybe-start-client"]
|
|
|
|
[tasks.status]
|
|
dependencies = ["server-status", "client-status"]
|
|
|
|
[tasks.stop]
|
|
dependencies = ["stop-client", "stop-server"]
|