You've already forked Atomcms-edit
4ce68720bb
- Set APP_DEBUG=false in .env to prevent stack trace leakage - Use strict comparison (===) for MD5 password migration check - Fix duplicate rewrite rules and orphaned closing tag in .htaccess - Remove leftover test files (cookies.txt, ci_test.txt, test-registration.php) - Remove duplicate package-lock.json (using yarn only) - Update .gitignore for above files
43 lines
746 B
Plaintext
Executable File
43 lines
746 B
Plaintext
Executable File
# Negeer wachtwoorden en database-instellingen
|
|
.env
|
|
.env.backup
|
|
.env.testing
|
|
config.php
|
|
wp-config.php
|
|
/uploads/
|
|
/temp/
|
|
*.log
|
|
|
|
# Geen zware afhankelijkheden pushen
|
|
node_modules/
|
|
vendor/
|
|
|
|
# UITZONDERING: Vertaalbestanden in lang/vendor wel pushen
|
|
/lang/vendor/
|
|
|
|
# Systeembestanden (Mac/Windows troep)
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# VPS automation scripts (niet pushen naar GitLab)
|
|
watch.sh
|
|
check-updates.sh
|
|
|
|
# Cache bestanden (niet pushen naar GitLab)
|
|
/storage/framework/views/
|
|
/storage/framework/cache/
|
|
/storage/framework/sessions/
|
|
/storage/logs/
|
|
/storage/debugbar/rr
|
|
.rr.yaml
|
|
|
|
# Lockfiles (kies 1 package manager)
|
|
package-lock.json
|
|
|
|
# Overgebleven test/temp bestanden
|
|
ci_test.txt
|
|
cookies.txt
|
|
|
|
# GitHub workflows (pushen naar GitLab)
|
|
!/.github/workflows/
|