Skip to content

Commit 795931c

Browse files
strandedturtleclaude
andcommitted
Initial scaffold: gitignore and MCP server config
Establish the feature branch with project tooling config: .gitignore and .mcp.json (Playwright + Context7 MCP servers). Application scaffold (server/client) is being generated and will follow in subsequent commits. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013Lj6nYJQDtLaZFvvEQJGM4
0 parents  commit 795931c

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules/
2+
dist/
3+
*.log
4+
.env
5+
.env.local
6+
data/
7+
*.sqlite
8+
*.sqlite3
9+
*.db
10+
.DS_Store
11+
client/dev-dist/
12+
playwright-report/
13+
test-results/

.mcp.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"mcpServers": {
3+
"playwright": {
4+
"command": "npx",
5+
"args": ["-y", "@playwright/mcp@latest"]
6+
},
7+
"context7": {
8+
"command": "npx",
9+
"args": ["-y", "@upstash/context7-mcp"]
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)