Move dev-env to subdirectory (#10009)

This commit is contained in:
Samuel Newman
2026-03-06 17:45:49 +00:00
committed by GitHub
parent 60a0edbbe2
commit e2c54a858c
13 changed files with 4874 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 "$@"