Development environment functions

This commit is contained in:
geoffsee
2025-08-15 18:59:05 -04:00
commit e289de2bd7
58 changed files with 11955 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env sh
untrust_cert() {
cert_path=$1
echo "Removing trust for development certificate"
sudo security remove-trusted-cert -d $cert_path
}
untrust_cert ./cluster.crt
untrust_cert ./zitadel.crt
echo "Development certificates successfully removed from system trust store"