47 lines
612 B
Text
47 lines
612 B
Text
# Zola static site
|
|
# Ignore build artifacts, cache, and OS/editor files
|
|
|
|
.github/
|
|
|
|
# Zola cache
|
|
.cache/
|
|
|
|
# Sass cache
|
|
.sass-cache/
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Editor/OS files
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Python virtualenvs (if any)
|
|
venv/
|
|
|
|
# VS Code settings
|
|
.vscode/
|
|
|
|
# Do NOT ignore public/
|
|
!/public/
|
|
|
|
# Ignore processed images (if you want to keep originals only)
|
|
processed_images/
|
|
|
|
# Ignore old config backups
|
|
old_config.toml
|
|
|
|
# Ignore build scripts output (if any)
|
|
*.out
|
|
|
|
# Ignore Forgejo/GoatCounter analytics local files
|
|
analytics/
|
|
|
|
# Ignore any other temp files
|
|
*.temp
|