Skip to content

Commit a31a65d

Browse files
authored
devops: make dev explicitly uses the port the pnpm expects (fix #6565) (#6575)
## 📝 Summary Makes `make dev` fail explicitly when marimo can't get the port `pnpm` expects it to use, instead of telling the user to open a `http://localhost:3000` address that doesn't work. ## 🔍 Description of Changes Added `--port 2718` to the command `marimo` in `make dev` ## 📋 Checklist - [X] I have read the [contributor guidelines](https://github.com/marimo-team/marimo/blob/main/CONTRIBUTING.md). - I have added tests for the changes made. - I tested this manually, and am not sure if any other test is needed for such a micro change - [X] I have run the code and verified that it works as expected.
1 parent 6a36e12 commit a31a65d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dev:
5858
@echo "Starting development servers..."
5959
@# Start both processes, with marimo in background
6060
@(trap 'kill %1; exit' INT; \
61-
uv run marimo edit --no-token --headless /tmp & \
61+
uv run marimo edit --no-token --headless /tmp --port 2718 & \
6262
pnpm dev)
6363
dev-sandbox:
6464
@echo "Starting development servers..."

0 commit comments

Comments
 (0)