kjuulh
4a0fcd1bbb
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
16 lines
370 B
Bash
Executable File
16 lines
370 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
echo "starting services"
|
|
docker compose -f templates/docker-compose.yaml up -d --remove-orphans
|
|
|
|
sleep 5
|
|
|
|
tear_down() {
|
|
echo "cleaning up services in the background"
|
|
(docker compose -f templates/docker-compose.yaml down -v &) > /dev/null 2>&1
|
|
}
|
|
|
|
trap tear_down SIGINT
|
|
|
|
RUST_LOG=info,hyperlog=trace cargo watch -x 'run -F include_server -- serve'
|