mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
c11c4b0e3e
* build(examples): support process management * build(examples): manage trunk * build(examples): manage cargo leptos * doc(examples): add run instructions
13 lines
294 B
TOML
13 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"]
|