diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-24 08:41:52 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-24 08:41:52 -0600 |
| commit | 6f81b893b281e78a50ce28b69d953429c69a1fa8 (patch) | |
| tree | bf195727e1df24791c86dff22a01c550efbe7fc1 /bin | |
| parent | 924f3aafb2796ce2aeaa59c641e54417d440a178 (diff) | |
chore: start cockroach db in Procfile
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/cochroach | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/cochroach b/bin/cochroach new file mode 100755 index 0000000..057c884 --- /dev/null +++ b/bin/cochroach @@ -0,0 +1,8 @@ +#!/bin/sh + +if ! command -v cockroach >/dev/null 2>&1; then + echo "Install cockroach: https://github.com/cockroachdb/cockroach" + exit 1 +fi + +exec cockroach $@ |
