Merged in feature/admin-api (pull request #191)

admin api and associated tools

* in progress

admin api started and permit.io setup tool started

* docs

* build fix

* integration tests passing

* new permit variables

* fix permit

* fix delete regex

* fix delete response

* docs

* docs
This commit is contained in:
Jay Brown
2025-10-23 22:57:15 +00:00
parent 7638fd3a90
commit 2b43799f56
29 changed files with 10579 additions and 165 deletions
+12
View File
@@ -118,3 +118,15 @@ tasks:
-X queryorchestration/internal/serviceconfig/build.buildTime={{.BUILD_TIME}} \
-X queryorchestration/internal/serviceconfig/build.gitCommit={{.GIT_COMMIT}}" \
cmd/queryAPI/main.go
integration:admin:
desc: "Run admin user management integration tests (requires real AWS/Permit.io credentials)"
dir: ../test/integration
cmds:
- |
if [ ! -f .env ]; then
echo "❌ Error: test/integration/.env not found"
echo "Copy .env.example to .env and configure your credentials"
echo "See test/integration/README.md for setup instructions"
exit 1
fi
- go test -tags=integration -v ./...