feat: add protos
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-11 16:23:52 +02:00
parent 113c646334
commit 86cba91b16
10 changed files with 454 additions and 28 deletions

View File

@@ -3,10 +3,13 @@
echo "starting services"
docker compose -f templates/docker-compose.yaml up -d --remove-orphans
sleep 5
tear_down() {
docker compose -f templates/docker-compose.yaml down -v || true
echo "cleaning up services in the background"
(docker compose -f templates/docker-compose.yaml down -v &) > /dev/null 2>&1
}
trap tear_down EXIT
trap tear_down SIGINT
RUST_LOG=trace,tokio=info,tower=info,mio=info,sqlx=info cargo run -F include_server -- serve
RUST_LOG=info,hyperlog=trace cargo run -F include_server -- serve