mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
9 lines
242 B
Bash
9 lines
242 B
Bash
#!/bin/bash
|
|||
|
|||
set -e
|
|||
|
|||
./build/operator/prebuild.sh "./migrations"
|
|||
|
|||
go build -gcflags "all=-N -l" -o /tmp/zitadeloperator-debug ./cmd/operator-debug
|
|||
dlv exec --api-version 2 --headless --listen 127.0.0.1:2345 /tmp/zitadeloperator-debug -- "$@"
|