Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
978d5e2
feat(cloud-deployment): implement Phase V specification and planning …
DevHammad0 Jan 7, 2026
46fe3a8
feat(cloud-deployment): add Phase V task generation prompt and implem…
DevHammad0 Jan 7, 2026
397c5a2
feat(phase-v): complete foundational implementation for advanced clou…
DevHammad0 Jan 7, 2026
a5ae72c
feat(phase-v): finalize foundation phase with validation and deployme…
DevHammad0 Jan 7, 2026
e2e7cd5
feat(phase-v): complete implementation and testing for user stories
DevHammad0 Jan 7, 2026
4271503
feat(docs): add local deployment guide for Taskify and remove outdate…
DevHammad0 Jan 10, 2026
9bf15f7
feat(phase-v): finalize Phase V testing and validation with enhancements
DevHammad0 Jan 10, 2026
cca0699
feat(task-sidebar): implement tab-level caching and optimistic update…
DevHammad0 Jan 11, 2026
bba82af
refactor(chat-page): implement resizable panels for improved layout
DevHammad0 Jan 11, 2026
5850bc3
feat(docs): add comprehensive local deployment guide for Taskify
DevHammad0 Jan 11, 2026
f26bd18
feat(cloud-deployment): implement comprehensive CI/CD pipeline and de…
DevHammad0 Jan 12, 2026
49f4d27
fix(ci): use full OCIR_REGISTRY URL for container registry login
DevHammad0 Jan 12, 2026
a6299a1
fix(ci): update database connection strings and test execution in CI …
DevHammad0 Jan 12, 2026
0676664
feat(package): add test script to package.json for improved testing w…
DevHammad0 Jan 12, 2026
2cc1d61
chore(ci): skip frontend unit tests in CI workflow to focus on integr…
DevHammad0 Jan 12, 2026
cfcfb43
fix(ci): add OCI CLI installation for OKE authentication
DevHammad0 Jan 12, 2026
4d853e0
fix(ci): add Dapr installation before Helm deployment
DevHammad0 Jan 12, 2026
91367d5
fix(ci): add Helm management label to secrets
DevHammad0 Jan 12, 2026
0273f2a
fix(ci): validate workflow, fix deployment names, skip smoke tests
DevHammad0 Jan 12, 2026
4ed68fd
fix(ci): add short_sha to build job outputs for image tags
DevHammad0 Jan 12, 2026
7e39b3d
fix(ci): use uppercase secret keys for environment variables
DevHammad0 Jan 12, 2026
a237f71
fix(helm): make secret.yaml conditional to avoid overwriting CI secrets
DevHammad0 Jan 12, 2026
5a7fcca
feat(cloud): enable LoadBalancer for public access
DevHammad0 Jan 12, 2026
452233b
fix(helm): move service config under api and web sections
DevHammad0 Jan 12, 2026
2f30fec
fix(helm): add BETTER_AUTH_SECRET to web deployment, update staging URL
DevHammad0 Jan 12, 2026
2220a63
fix(helm): add DATABASE_URL to web deployment for Better Auth
DevHammad0 Jan 12, 2026
9f86c21
fix: cloud deployment auth - relative URLs, Google OAuth, separate DB…
DevHammad0 Jan 12, 2026
99ef48b
trigger rebuild
DevHammad0 Jan 12, 2026
2a09143
trigger rebuild with fixed DB URL
DevHammad0 Jan 12, 2026
5128bd8
added OKE_NETWORKING_FIX doc
DevHammad0 Jan 13, 2026
2387181
feat: Add taskify.click domain, TLS setup, and OKE networking documen…
DevHammad0 Jan 13, 2026
75c9e30
docs: Create professional hackathon README and clean up project
DevHammad0 Jan 13, 2026
853876a
docs: Add MIT LICENSE and update demo video link
DevHammad0 Jan 13, 2026
18c2010
fix: Add hostNetwork, pod affinity, and correct env vars for OKE depl…
DevHammad0 Jan 13, 2026
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
10 changes: 9 additions & 1 deletion .claude/settings.local.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,7 +17,15 @@
"mcp__playwright__browser_wait_for",
"mcp__playwright__browser_evaluate",
"mcp__playwright__browser_console_messages",
"Bash(.specify/scripts/bash/setup-plan.sh:*)"
"Bash(.specify/scripts/bash/setup-plan.sh:*)",
"mcp__context7__query-docs",
"Bash(test:*)",
"Bash(git rev-parse:*)",
"mcp__playwright__browser_take_screenshot",
"mcp__playwright__browser_select_option",
"mcp__playwright__browser_network_requests",
"Bash(.venv/bin/python:*)",
"Bash(pkill:*)"
]
}
}
66 changes: 66 additions & 0 deletions .dockerignore
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
# Git
.git/
.gitignore
.gitattributes

# Documentation
*.md
README.md
CLAUDE.md
AGENTS.md
docs/
specs/
history/

# CI/CD
.github/

# IDE
.vscode/
.idea/
*.swp
*.swo

# Environment files
*.env
!.env.example

# Logs
*.log
*.log.*

# Testing
coverage/
.coverage
.pytest_cache/
.playwright/
.playwright-mcp/

# Backend
backend/.venv/
backend/uv.lock
backend/__pycache__/
backend/**/__pycache__/
backend/**/*.pyc

# Frontend
frontend/node_modules/
frontend/.next/
frontend/out/

# Database
*.db
*.db-shm
*.db-wal

# Helm
helm/

# Scripts
scripts/

# Temporary files
*.tmp
*.swp
.DS_Store
Thumbs.db
Loading
Loading