14a32bdc0d
- Unified monorepo with backend (Express), frontend (Next.js), and devops - Backend: ESLint, Prettier, Jest tests (3 passing), health endpoint, .env.example - Frontend: Fixed build errors, fixed all lint errors (0 remaining), tests passing - DevOps: Docker Compose with PostgreSQL, backend, frontend + healthchecks - CI/CD: 3 GitHub Actions workflows (backend, frontend, docker integration) - DX: Husky pre-commit hooks with smart change detection - Docs: Root README with architecture, CONTRIBUTING.md, PR template Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
37 lines
916 B
JSON
37 lines
916 B
JSON
{
|
|
"models": {
|
|
"main": {
|
|
"provider": "ollama",
|
|
"modelId": "devstral:latest",
|
|
"maxTokens": 128000,
|
|
"temperature": 0.2
|
|
},
|
|
"research": {
|
|
"provider": "ollama",
|
|
"modelId": "devstral:latest",
|
|
"maxTokens": 128000,
|
|
"temperature": 0.1
|
|
},
|
|
"fallback": {
|
|
"provider": "ollama",
|
|
"modelId": "devstral:latest",
|
|
"maxTokens": 128000,
|
|
"temperature": 0.2
|
|
}
|
|
},
|
|
"global": {
|
|
"logLevel": "info",
|
|
"debug": false,
|
|
"defaultNumTasks": 10,
|
|
"defaultSubtasks": 5,
|
|
"defaultPriority": "medium",
|
|
"projectName": "Taskmaster",
|
|
"ollamaBaseURL": "http://localhost:11434/api",
|
|
"bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
|
|
"responseLanguage": "English",
|
|
"defaultTag": "master",
|
|
"azureOpenaiBaseURL": "https://your-endpoint.openai.azure.com/",
|
|
"userId": "1234567890"
|
|
},
|
|
"claudeCode": {}
|
|
} |