seogeneratorserver/.gitignore
StillHammer dbf1a3de8c Add technical plan for multi-format export system
Added plan.md with complete architecture for format-agnostic content generation:
- Support for Markdown, HTML, Plain Text, JSON formats
- New FormatExporter module with neutral data structure
- Integration strategy with existing ContentAssembly and ArticleStorage
- Bonus features: SEO metadata generation, readability scoring, WordPress Gutenberg format
- Implementation roadmap with 4 phases (6h total estimated)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-18 16:14:29 +08:00

111 lines
1.6 KiB
Plaintext

# === FICHIERS SENSIBLES ===
# Variables d'environnement
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Clés de service et credentials
*.json
!package*.json
!lib/package.json
# Si tu as d'autres fichiers JSON légitimes à garder, les ajouter avec !filename.json
# === LOGS ===
# Tous les fichiers de log
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# === NODE.JS ===
# Dependencies
node_modules/
jspm_packages/
dist/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
*.jar
# Yarn Integrity file
.yarn-integrity
# Maven (au cas où)
target/
# === FICHIERS TEMPORAIRES/DEBUG ===
# Tes fichiers de test temporaires
test_*.js
*_test.js
*_debug.js
test-*.js
# HTML généré était ici mais maintenant on le garde dans tools/
# Unit test reports
TEST*.xml
# === DOSSIERS DE DONNÉES ===
# Si config/ et data/ contiennent des données sensibles
config/
data/
# === OUTILS DE DÉVELOPPEMENT ===
# IDE et éditeurs
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# === CLAUDE ===
# Configuration locale Claude (garde les settings globaux si besoin)
.claude/settings.local.json
# === APPLICATIONS/BINAIRES ===
*.app
*.exe
*.war
# === MEDIA FILES ===
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv
# === AUTRES ===
# Compiled files
*.class
*.py[cod]
# Coverage directory used by tools like istanbul
coverage/
*.lcov
# Temporary folders
tmp/
temp/