- Add .gitkeep files to ensure all essential directories are tracked by git - Update .gitignore to allow .gitkeep files in logs/ and docs/generated/ - Preserve directory structure for Ralph project template system - Directories added: src/, examples/, specs/stdlib/, templates/specs/, logs/, docs/generated/ This ensures the complete Ralph project structure is available when cloning the repository, even before any actual project files are created.
38 lines
451 B
Text
38 lines
451 B
Text
# Ralph generated files
|
|
.call_count
|
|
.last_reset
|
|
.exit_signals
|
|
status.json
|
|
|
|
# Logs
|
|
logs/*
|
|
!logs/.gitkeep
|
|
*.log
|
|
|
|
# Generated documentation
|
|
docs/generated/*
|
|
!docs/generated/.gitkeep
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
.temp/
|
|
|
|
# Node modules (if using Node.js projects)
|
|
node_modules/
|
|
|
|
# Python cache (if using Python projects)
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Rust build (if using Rust projects)
|
|
target/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|