Removes 3 broken submodules causing Gitea 500 errors: - autonomous-coding - claude-plugins - roa2web These directories are now gitignored as they are separate projects. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
63 lines
712 B
Plaintext
63 lines
712 B
Plaintext
# Exclude project directories
|
|
romfastsql/
|
|
test/
|
|
|
|
# Claude Code
|
|
.claude-logs/
|
|
.claude-work/
|
|
.claude/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
package-lock.json
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm/
|
|
.yarn/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
*.egg-info/
|
|
.eggs/
|
|
*.egg
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
.env
|
|
|
|
# IDE & Editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.o
|
|
*.so
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
tmp/
|
|
|
|
# Exclude any other project directories that might be added
|
|
# Keep only workspace-level files (.sh, .md)
|
|
|
|
# Project directories (separate repos)
|
|
autonomous-coding/
|
|
claude-plugins/
|
|
roa2web/
|