Превентивная защита от случайной публикации content/logs, content/data, ghost.*.json (см. инцидент moovg_ru 2026-05-24). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
34 lines
534 B
Plaintext
34 lines
534 B
Plaintext
# Security: НЕ коммитить production logs и CMS data exports
|
||
# (могут содержать API keys, JWT, private_key). См. инцидент 2026-05-24.
|
||
content/logs/
|
||
content/data/
|
||
*.production.log
|
||
*.production.log.*
|
||
ghost.json
|
||
ghost.*.json
|
||
*.ghost.*.json
|
||
|
||
# build output
|
||
dist/
|
||
.astro/
|
||
|
||
# dependencies
|
||
node_modules/
|
||
|
||
# logs
|
||
npm-debug.log*
|
||
yarn-debug.log*
|
||
yarn-error.log*
|
||
pnpm-debug.log*
|
||
*.log
|
||
|
||
# environment variables
|
||
.env
|
||
.env.production
|
||
.env.local
|
||
|
||
# macOS-specific files
|
||
.DS_Store
|
||
|
||
# jetbrains setting folder
|
||
.idea/ |