forked from claude-did-this/claude-hub
* feat: Improve Claude authentication setup experience - Replace 'claude login' with 'claude --dangerously-skip-permissions' - Fix path references from /auth-output to actual authentication location - Simplify user instructions to be more accessible - Add automatic authentication execution (no manual typing required) - Add comprehensive validation for authentication success - Check file existence, size, and timestamp - Provide clear error messages for different failure scenarios - Remove deprecated setup-claude-auth.sh script - Update CLAUDE.md to reference correct build script path - Exclude todos directory from authentication capture 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * remove self-hosted runners from ci --------- Co-authored-by: Claude <noreply@anthropic.com>
99 lines
1.1 KiB
Plaintext
99 lines
1.1 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.template
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Testing
|
|
coverage/
|
|
test-results/
|
|
|
|
# TypeScript build artifacts
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# TypeScript compiled test files
|
|
test/**/*.d.ts
|
|
test/**/*.d.ts.map
|
|
test/**/*.js.map
|
|
# Don't ignore the actual test files
|
|
!test/**/*.test.js
|
|
!test/**/*.spec.js
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# SSH Keys for testing
|
|
ssh_keys_tmp/
|
|
|
|
# AWS CLI installation files
|
|
awscliv2.zip
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Pre-commit
|
|
.pre-commit-cache/
|
|
|
|
# Security files
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Credential files
|
|
credentials
|
|
config
|
|
auth.json
|
|
service-account.json
|
|
|
|
# Claude authentication output
|
|
.claude-hub/
|
|
claude-config/
|
|
claude-config*
|
|
|
|
# Docker secrets
|
|
secrets/
|
|
|
|
|
|
# Temporary and backup files
|
|
*.backup
|
|
*.tmp
|
|
*~
|
|
.#*
|
|
|
|
# Root level clutter prevention
|
|
/test-*.js
|
|
/PR_SUMMARY.md
|
|
/*-proposal.md
|