Template
ae9b59ec76
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
212 lines
3.9 KiB
Plaintext
212 lines
3.9 KiB
Plaintext
# ============================================================
|
|
# Local task tracking (not version controlled)
|
|
# ============================================================
|
|
TODO.md
|
|
|
|
# ============================================================
|
|
# Environment and secrets
|
|
# ============================================================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.local.php
|
|
*.secret.php
|
|
configuration.php
|
|
configuration.*.php
|
|
configuration.local.php
|
|
conf/conf.php
|
|
conf/conf*.php
|
|
secrets/
|
|
*.secrets.*
|
|
|
|
# ============================================================
|
|
# Logs, dumps and databases
|
|
# ============================================================
|
|
*.db
|
|
*.db-journal
|
|
*.dump
|
|
*.log
|
|
*.pid
|
|
*.seed
|
|
|
|
|
|
# ============================================================
|
|
# OS / Editor / IDE cruft
|
|
# ============================================================
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
Thumbs.db:encryptable
|
|
ehthumbs.db
|
|
ehthumbs_vista.db
|
|
$RECYCLE.BIN/
|
|
System Volume Information/
|
|
*.lnk
|
|
Icon?
|
|
.idea/
|
|
.settings/
|
|
.claude/
|
|
.vscode/*
|
|
!.vscode/tasks.json
|
|
!.vscode/settings.json.example
|
|
!.vscode/extensions.json
|
|
*.code-workspace
|
|
*.sublime*
|
|
.project
|
|
.buildpath
|
|
.classpath
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*.tmp
|
|
*.old
|
|
*.orig
|
|
|
|
# ============================================================
|
|
# Dev scripts and scratch
|
|
# ============================================================
|
|
TODO.md
|
|
todo*
|
|
*ffs*
|
|
|
|
# ============================================================
|
|
# SFTP / sync tools
|
|
# ============================================================
|
|
sftp-config*.json
|
|
sftp-config.json.template
|
|
sftp-settings.json
|
|
|
|
# ============================================================
|
|
# Sublime SFTP / FTP sync
|
|
# ============================================================
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
*.sublime-settings
|
|
.libsass.json
|
|
*.ffs*
|
|
|
|
# ============================================================
|
|
# Replit / cloud IDE
|
|
# ============================================================
|
|
.replit
|
|
replit.md
|
|
|
|
# ============================================================
|
|
# Archives / release artifacts
|
|
# ============================================================
|
|
*.7z
|
|
*.rar
|
|
*.tar
|
|
*.tar.gz
|
|
*.tgz
|
|
*.zip
|
|
artifacts/
|
|
release/
|
|
releases/
|
|
|
|
# ============================================================
|
|
# Build outputs and site generators
|
|
# ============================================================
|
|
.mkdocs-build/
|
|
.cache/
|
|
.parcel-cache/
|
|
build/
|
|
dist/
|
|
out/
|
|
site/
|
|
*.map
|
|
*.css.map
|
|
*.js.map
|
|
*.min.css
|
|
*.min.js
|
|
*.tsbuildinfo
|
|
|
|
# ============================================================
|
|
# CI / test artifacts
|
|
# ============================================================
|
|
.coverage
|
|
.coverage.*
|
|
coverage/
|
|
coverage.xml
|
|
htmlcov/
|
|
junit.xml
|
|
reports/
|
|
test-results/
|
|
tests/_output/
|
|
.github/local/
|
|
.github/workflows/*.log
|
|
|
|
# ============================================================
|
|
# Node / JavaScript
|
|
# ============================================================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
.pnpm-store/
|
|
.yarn/
|
|
.npmrc
|
|
.eslintcache
|
|
package-lock.json
|
|
|
|
# ============================================================
|
|
# PHP / Composer tooling
|
|
# ============================================================
|
|
vendor/
|
|
!src/media/vendor/
|
|
composer.lock
|
|
*.phar
|
|
codeception.phar
|
|
.phpunit.result.cache
|
|
.php_cs.cache
|
|
.php-cs-fixer.cache
|
|
.phpstan.cache
|
|
.phplint-cache
|
|
phpmd-cache/
|
|
.psalm/
|
|
.rector/
|
|
|
|
# ============================================================
|
|
# Python
|
|
# ============================================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyc
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.eggs/
|
|
*.egg
|
|
*.egg-info/
|
|
.installed.cfg
|
|
MANIFEST
|
|
develop-eggs/
|
|
downloads/
|
|
eggs/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyright/
|
|
.tox/
|
|
.nox/
|
|
*.cover
|
|
*.coverage
|
|
hypothesis/
|
|
|
|
profile.ps1
|
|
.mcp.json
|
|
|
|
# ============================================================
|
|
# Local wiki clone (not version controlled)
|
|
# ============================================================
|
|
wiki/
|