-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcmux.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathcmux.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"commands": [
{
"name": "Test: watch",
"command": "npm run test:watch"
},
{
"name": "Test: all",
"command": "npm test"
},
{
"name": "Test: changed",
"command": "npx vitest run --changed"
},
{
"name": "Test: budget-manager",
"command": "npx vitest run tests/services/budget-manager.test.ts"
},
{
"name": "Test: trade-executor",
"command": "npx vitest run tests/services/trade-executor.test.ts"
},
{
"name": "Test: scenarios",
"command": "npx vitest run tests/scenarios/"
},
{
"name": "Type check",
"command": "npx tsc --noEmit"
},
{
"name": "Build",
"command": "npm run build"
},
{
"name": "Dev (watch compile)",
"command": "npm run dev"
},
{
"name": "Start MCP (preview)",
"command": "COPY_MODE=preview npm start"
},
{
"name": "Tail trades DB",
"command": "sqlite3 copytrader.db 'SELECT id, side, market_slug, amount, price, status FROM trades ORDER BY created_at DESC LIMIT 20'"
},
{
"name": "Tail daily budget",
"command": "sqlite3 copytrader.db 'SELECT date, spent, limit_amount FROM daily_budget ORDER BY date DESC LIMIT 10'"
}
]
}