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"]
|