feat: with basic server
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
12
scripts/dev.sh
Executable file
12
scripts/dev.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
echo "starting services"
|
||||
docker compose -f templates/docker-compose.yaml up -d --remove-orphans
|
||||
|
||||
tear_down() {
|
||||
docker compose -f templates/docker-compose.yaml down -v || true
|
||||
}
|
||||
|
||||
trap tear_down EXIT
|
||||
|
||||
RUST_LOG=trace,tokio=info,tower=info,mio=info,sqlx=info cargo run -F include_server -- serve
|
Reference in New Issue
Block a user