- README.md explains scope, conventions, what does / does not belong here - Agent.md is the AI session briefing with workflow rules - .gitignore blocks secrets, runtime data, and build artifacts Refs OP#1119
75 lines
670 B
Text
75 lines
670 B
Text
# Secrets — NEVER commit
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
secrets/
|
|
credentials/
|
|
|
|
# Backups and dumps
|
|
*.sql
|
|
*.sql.gz
|
|
*.tar.gz
|
|
*.tar.xz
|
|
backups/
|
|
dumps/
|
|
|
|
# Runtime data that shouldn't be in version control
|
|
data/
|
|
volumes/
|
|
storage/
|
|
acme.json
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.Python
|
|
pip-log.txt
|
|
.coverage
|
|
.pytest_cache/
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
dist/
|
|
build/
|
|
.next/
|
|
.astro/
|
|
|
|
# IDE / Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Temporary
|
|
*.tmp
|
|
*.bak
|
|
*.orig
|
|
.#*
|
|
#*#
|