Skip to content

Commit bc3574f

Browse files
ieduardogfclaude
andauthored
chore: add dev server launch configuration (#1535)
## Summary - Adds `.claude/launch.json` with dev server configurations for Storybook and Playroom - Enables Claude Code's `preview_start` tool to launch servers by name ## Configurations | Server | Command | Port | |--------|---------|------| | Storybook | `yarn storybook` | 6006 | | Playroom | `yarn playroom` | 9000 | ## Test plan - [ ] Run `preview_start` with name `"Storybook"` and verify it starts on port 6006 - [ ] Run `preview_start` with name `"Playroom"` and verify it starts on port 9000 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent bd56fb2 commit bc3574f

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.claude/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.0.1",
3+
"configurations": [
4+
{
5+
"name": "Storybook",
6+
"runtimeExecutable": "yarn",
7+
"runtimeArgs": ["storybook"],
8+
"port": 6006
9+
},
10+
{
11+
"name": "Playroom",
12+
"runtimeExecutable": "yarn",
13+
"runtimeArgs": ["playroom"],
14+
"port": 9000
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)