📎 Backport devenv improvements

This commit is contained in:
Andrey Antukh
2026-06-05 11:43:30 +02:00
parent 47ce68eed0
commit f457c68355
72 changed files with 4789 additions and 274 deletions
+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}";
+4
View File
@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -e;
pnpm exec mdts --host 0.0.0.0 --port 14179
+4
View File
@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -e;
pnpm exec opencode;
+4
View File
@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -e;
pnpm exec opencode serve --hostname 0.0.0.0 --port 14180;
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
CONTEXT="${CONTEXT:-copilot-cli}"
while [[ $# -gt 0 ]]; do
case "$1" in
--context) CONTEXT="$2"; shift 2 ;;
*) echo "Unknown option: $1"; exit 1 ;;
esac
done
serena start-mcp-server --transport streamable-http --port 14281 --project penpot --context "$CONTEXT" --host 0.0.0.0