mirror of
https://github.com/penpot/penpot.git
synced 2026-05-14 12:34:10 +00:00
New tool to evaluate ClojureScript expressions by connecting to the nREPL service already provided in devenv. Add dependency 'nrepl-client' and a corresponding client class as well as types to support this. Add a new environment variable for 'devenv mode', which enables the new tool (PENPOT_MCP_DEVENV).
7 lines
204 B
Bash
Executable File
7 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This starts the MCP server in a configuration for Penpot development
|
|
# (assuming devenv)
|
|
|
|
PENPOT_MCP_SERVER_HOST=0.0.0.0 PENPOT_MCP_REMOTE_MODE=true PENPOT_MCP_DEVENV=true pnpm run bootstrap
|