27 lines
512 B
Plaintext
27 lines
512 B
Plaintext
# --- Security ---
|
|
# Contains database passwords and secrets
|
|
.env
|
|
# Legacy config file (if you still use it locally)
|
|
src/config.php
|
|
|
|
# --- Dependencies ---
|
|
# Composer downloads these automatically during build
|
|
src/vendor/
|
|
|
|
# --- Application Data ---
|
|
# RSS cache folder (generated dynamically)
|
|
src/cache/
|
|
# Cron job logs
|
|
src/cron_output.log
|
|
|
|
# --- System Files ---
|
|
# Mac OS metadata
|
|
.DS_Store
|
|
# Windows thumbnail cache
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
|
|
# --- IDE Settings (Optional but recommended) ---
|
|
.idea/
|
|
.vscode/
|
|
*.swp |