16 lines
265 B
Bash
Executable File
16 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
kubectl port-forward postgres-0 5431:5432 &
|
|
PF_PID=$!
|
|
|
|
shutdown () {
|
|
kill $PF_PID
|
|
wait
|
|
}
|
|
|
|
trap shutdown INT TERM
|
|
|
|
PYTHONPATH=src python -m dexorder.bin.examine rpc_url=arbitrum_dxod db_url=postgres://dexorder@localhost:5431/dexorder "$@"
|
|
|
|
shutdown
|