move dev-env to sub project

This commit is contained in:
Samuel Newman
2026-03-05 21:58:22 +02:00
parent 7a08b82810
commit 9a8efca4a7
12 changed files with 4868 additions and 3801 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env sh
# Example usage:
# ./with-test-redis-and-db.sh psql postgresql://pg:password@localhost:5433/postgres -c 'select 1;'
# ./with-test-redis-and-db.sh redis-cli -h localhost -p 6380 ping
dir=$(dirname $0)
. ${dir}/_common.sh
SERVICES="db_test redis_test" main "$@"