mirror of
https://github.com/penpot/penpot.git
synced 2026-09-12 21:59:43 -04:00
📎 Backport devenv improvements
This commit is contained in:
1 parent
47ce68eed0
commit
f457c68355
72 files changed
+4789
-274
No files matched your search
Executable
+13
@@ -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}";
|
||||
Reference in new issue
Block a user