diff options
| author | mo khan <mo@mokhan.ca> | 2025-08-14 11:54:52 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-08-14 11:54:52 -0600 |
| commit | 9e55e65ac5eb6ff645880ee253a33f6ab138b615 (patch) | |
| tree | 3a55344b8c589f52687200c0beb5cd92688014fa /bin/spicedb | |
| parent | 3f228b16c758d377566f11d2d328d1ccf658a2ad (diff) | |
Fix the broken build by running pg as a separate container.
Improve shell scripts and remove /sparkles/restore endpoint
- Add error handling and debugging to shell scripts with `set -e` and `DEBUG` flag
- Ensure scripts run from project root with `cd "$(dirname "$0")/.."`
- Remove `/sparkles/restore` endpoint from public routes and Envoy config
- Add Postgres test container support for integration tests
- Update CI configuration with newer Runway version and improved test setup
- Simplify Makefile by removing redundant commands
-------
:robot: Commit message generated by GitLab Duo
Diffstat (limited to 'bin/spicedb')
| -rwxr-xr-x | bin/spicedb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/spicedb b/bin/spicedb index 5d4cf0b..726cc9f 100755 --- a/bin/spicedb +++ b/bin/spicedb @@ -1,5 +1,10 @@ #!/bin/sh +set -e +[ -n "$DEBUG" ] && set -x + +cd "$(dirname "$0")/.." + if ! command -v spicedb >/dev/null 2>&1; then echo "Install spicedb: https://authzed.com/docs/spicedb/getting-started/installing-spicedb" exit 1 |
