mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
Add a visible search trigger button next to the create-issue button in the sidebar header, improving search discoverability (previously only accessible via ⌘K). Search dialog open state is shared via a Zustand store so both the button and keyboard shortcut work. Also restores turbo.json globalEnv config (FRONTEND_PORT, etc.) that was accidentally dropped during the monorepo extraction, fixing worktree port conflicts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
735 B
JSON
36 lines
735 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"DATABASE_URL",
|
|
"PORT",
|
|
"FRONTEND_PORT",
|
|
"FRONTEND_ORIGIN",
|
|
"NEXT_PUBLIC_API_URL",
|
|
"NEXT_PUBLIC_WS_URL",
|
|
"MULTICA_SERVER_URL",
|
|
"COMPOSE_PROJECT_NAME",
|
|
"POSTGRES_DB",
|
|
"POSTGRES_PORT"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**", "app/**", "**/*.ts", "**/*.tsx", "**/*.css"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^typecheck"]
|
|
}
|
|
}
|
|
}
|