Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
710 B
Plaintext
Executable File
61 lines
710 B
Plaintext
Executable File
# Common files to ignore in all git repositories
|
|
|
|
# OS Generated Files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Editor/IDE Files
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
.idea/
|
|
.vscode/settings.json
|
|
.vscode/launch.json
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Temporary Files
|
|
*.tmp
|
|
*.temp
|
|
*-temp.*
|
|
*-tmp.*
|
|
temp-*
|
|
tmp-*
|
|
|
|
# Build Artifacts (project-specific, not dependency builds)
|
|
/build/cache/
|
|
/build/temp/
|
|
|
|
# Local Environment Files
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Test Coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Misc
|
|
.rsx-manifest-cache
|
|
.php-cs-fixer.cache
|
|
runonsave_debug.log
|