mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 13:21:09 +00:00
15 lines
438 B
Bash
Executable file
15 lines
438 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
IBIS__BIND="${IBIS_BIND:-"127.0.0.1:8081"}"
|
|
|
|
killall trunk || true
|
|
|
|
# run processes in parallel
|
|
# https://stackoverflow.com/a/52033580
|
|
(trap 'kill 0' INT;
|
|
# start frontend
|
|
CARGO_TARGET_DIR=target/frontend trunk serve -w src/frontend/ -w assets/ --proxy-backend http://$IBIS__BIND &
|
|
# start backend, with separate target folder to avoid rebuilds from arch change
|
|
cargo watch --ignore assets/ibis.css --exec run
|
|
)
|