mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
7ef57345ca
* fix(examples/build): maybe spawn client process * docs(examples/error_boundary): add testing note
34 lines
836 B
TOML
34 lines
836 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}"
|
|
if [ -z ${SPAWN_CLIENT_PROCESS} ];then
|
|
cargo make start-client ${@} &
|
|
else
|
|
cargo make start-client ${@}
|
|
fi
|
|
else
|
|
echo " ${CLIENT_PROCESS_NAME} is already started"
|
|
fi
|
|
'''
|