Remove temporary task-related files (plan.md, task_log.md) and update .gitignore to prevent them from being tracked in the future. These files are implementation-specific and should not be part of the repository as they contain task execution details that are only relevant during the development process.
37 lines
382 B
Plaintext
37 lines
382 B
Plaintext
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Node modules (if any local testing)
|
|
node_modules/
|
|
|
|
# Docker volumes
|
|
data/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
~*
|
|
|
|
# Claude authentication files (copied during build)
|
|
.claude.json
|
|
.claude/
|
|
|
|
# Environment file with credentials
|
|
.env
|
|
plan.md
|
|
task_log.md |