📎 Backport devenv improvements

This commit is contained in:
Andrey Antukh committed 2026-06-05 11:44:20 +02:00
1 parent 47ce68eed0
commit f457c68355
72 files changed
+4789 -274

No files matched your search

+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e;
PORT=14180
while [[ $# -gt 0 ]]; do
case "$1" in
--port|-p) PORT="$2"; shift 2 ;;
*) echo "Unknown option: $1"; exit 1 ;;
esac
done
pnpm exec opencode attach "http://localhost:${PORT}";