mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
905d46a09d
* doc(test-report): report trunk and node * refactor(examples): extract client process tasks * chore(exaples): force ci
35 lines
794 B
TOML
35 lines
794 B
TOML
[tasks.start-client]
|
|
|
|
[tasks.stop-client]
|
|
condition = { env_set = ["CLIENT_PROCESS_NAME"] }
|
|
script = '''
|
|
if [ ! -z $(pidof ${CLIENT_PROCESS_NAME}) ]; then
|
|
pkill -ef ${CLIENT_PROCESS_NAME}
|
|
fi
|
|
'''
|
|
|
|
[tasks.client-status]
|
|
condition = { env_set = ["CLIENT_PROCESS_NAME"] }
|
|
script = '''
|
|
if [ -z $(pidof ${CLIENT_PROCESS_NAME}) ]; then
|
|
echo " ${CLIENT_PROCESS_NAME} is not running"
|
|
else
|
|
echo " ${CLIENT_PROCESS_NAME} is up"
|
|
fi
|
|
'''
|
|
|
|
[tasks.maybe-start-client]
|
|
condition = { env_set = ["CLIENT_PROCESS_NAME"] }
|
|
script = '''
|
|
if [ -z $(pidof ${CLIENT_PROCESS_NAME}) ]; then
|
|
echo " Starting ${CLIENT_PROCESS_NAME}"
|
|
cargo make start-client ${@} &
|
|
else
|
|
echo " ${CLIENT_PROCESS_NAME} is already started"
|
|
fi
|
|
'''
|
|
|
|
# ALIASES
|
|
|
|
[tasks.dev]
|
|
alias = "maybe-start-client"
|