Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
8d57f46
docs: Auto-update and format models.md
github-actions[bot] May 28, 2025
1200f83
Merge PRs 13-17: Comprehensive AI-Driven CI/CD Development Flow System
codegen-sh[bot] May 28, 2025
e832198
Add comprehensive system analysis and testing suite
codegen-sh[bot] May 28, 2025
9bbb59d
Update src/ai_cicd_system/core/codegen_integrator.js
Zeeeepa May 28, 2025
f4b95e0
Update src/ai_cicd_system/core/task_storage_manager.js
Zeeeepa May 28, 2025
7befcff
Update tests/codegen_integration_test.js
Zeeeepa May 28, 2025
9acbae7
Merge pull request #19 from Zeeeepa/codegen/merge-comprehensive-ai-ci…
Zeeeepa May 28, 2025
b2a473c
feat: Implement real Codegen SDK integration with production-grade fe…
codegen-sh[bot] May 28, 2025
2e904ea
feat: Implement production PostgreSQL database for TaskStorageManager
codegen-sh[bot] May 28, 2025
493726f
feat: Add unified AI CI/CD system scaffolding structure
codegen-sh[bot] May 28, 2025
c928368
feat: Implement comprehensive Component Integration Framework
codegen-sh[bot] May 28, 2025
ab3b6ce
feat: Implement comprehensive Claude Code integration
codegen-sh[bot] May 28, 2025
4319a56
feat: implement AgentAPI middleware for System Orchestrator and Claud…
codegen-sh[bot] May 28, 2025
728c118
🚨 CRITICAL FIX: Remove duplicate TaskStorageManager class definitions
codegen-sh[bot] May 28, 2025
b3a92a7
fix: Update package-lock.json for new dependencies
codegen-sh[bot] May 28, 2025
dc4dfe8
Merge PR #31: Claude Code Integration Implementation
codegen-sh[bot] May 28, 2025
e31df76
fix: restore critical dependencies to prevent system failure
codegen-sh[bot] May 28, 2025
07c8158
Merge PR #29: Component Integration Framework Implementation
codegen-sh[bot] May 28, 2025
f9cb0ae
Merge PR #38: CRITICAL FIX - Remove duplicate TaskStorageManager clas…
codegen-sh[bot] May 28, 2025
e135892
fix: remove non-existent @perplexity-ai/sdk package
codegen-sh[bot] May 28, 2025
9e2843d
Merge PR #28: Production PostgreSQL Database Implementation
codegen-sh[bot] May 28, 2025
64fa8a9
fix: remove non-existent @xai-sdk/sdk package
codegen-sh[bot] May 28, 2025
6c521ca
Merge PR #34: AgentAPI Middleware Implementation
codegen-sh[bot] May 28, 2025
9ee16d0
fix: Remove duplicate TaskStorageManager class definition
codegen-sh[bot] May 28, 2025
dc717a6
resolve: merge conflict in package.json
codegen-sh[bot] May 28, 2025
f54a44e
Merge: Real Codegen SDK Integration Implementation
codegen-sh[bot] May 28, 2025
37abe12
🎯 Phase 1: Database Architecture Consolidation - Zero Redundancy Impl…
codegen-sh[bot] May 29, 2025
c3db1e5
Merge pull request #113 from Zeeeepa/codegen/phase1-database-architec…
Zeeeepa May 29, 2025
88983e8
🎯 PHASE 3 COMPLETE: Final Architectural Analysis & Implementation
codegen-sh[bot] May 29, 2025
34f720a
Merge pull request #114 from Zeeeepa/codegen-bot/phase3-final-archite…
Zeeeepa May 29, 2025
3b64a9f
feat: Consolidated Codegen SDK Integration - PRs #52,54,55,82,86,87
codegen-sh[bot] May 29, 2025
fecd7aa
Merge pull request #117 from Zeeeepa/codegen/phase2-codegen-sdk-conso…
Zeeeepa May 29, 2025
485bad4
Delete scripts/phase3_consolidation_implementation.js
Zeeeepa May 29, 2025
d6ac3cf
feat: Comprehensive PR Analysis & CI/CD Automation System for Claude …
codegen-sh[bot] May 29, 2025
03d02e7
Merge pull request #121 from Zeeeepa/codegen/comprehensive-pr-analysi…
Zeeeepa May 29, 2025
4bdc888
feat: Implement comprehensive PostgreSQL database schema and migratio…
codegen-sh[bot] May 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 50 additions & 9 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,50 @@
# API Keys (Required for using in any role i.e. main/research/fallback -- see `task-master models`)
ANTHROPIC_API_KEY=YOUR_ANTHROPIC_KEY_HERE
PERPLEXITY_API_KEY=YOUR_PERPLEXITY_KEY_HERE
OPENAI_API_KEY=YOUR_OPENAI_KEY_HERE
GOOGLE_API_KEY=YOUR_GOOGLE_KEY_HERE
MISTRAL_API_KEY=YOUR_MISTRAL_KEY_HERE
OPENROUTER_API_KEY=YOUR_OPENROUTER_KEY_HERE
XAI_API_KEY=YOUR_XAI_KEY_HERE
AZURE_OPENAI_API_KEY=YOUR_AZURE_KEY_HERE
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=claude_task_master
DB_USER=postgres
DB_PASSWORD=your_password_here

# SSL Configuration (optional)
DB_SSL=false
DB_SSL_REJECT_UNAUTHORIZED=true
DB_SSL_CA=
DB_SSL_CERT=
DB_SSL_KEY=

# Connection Pool Settings
DB_POOL_MAX=20
DB_POOL_MIN=2
DB_POOL_IDLE=10000
DB_POOL_ACQUIRE=60000
DB_POOL_EVICT=1000

# Connection Timeout Settings
DB_CONNECTION_TIMEOUT=30000
DB_IDLE_TIMEOUT=30000
DB_QUERY_TIMEOUT=60000
DB_STATEMENT_TIMEOUT=60000

# Application Settings
DB_APPLICATION_NAME=claude-task-master
DB_OPTIONS=

# Environment
NODE_ENV=development

# Logging
LOG_QUERIES=false
LOG_LEVEL=info

# Backup Settings
BACKUP_ENABLED=true
BACKUP_DIR=./backups
BACKUP_RETENTION_DAYS=30
BACKUP_SCHEDULE=0 2 * * *

# Test Database
TEST_DB_NAME=claude_task_master_test

# Production Database URL (for deployment)
# DATABASE_URL=postgresql://user:password@host:port/database

Loading
Loading