40 lines
456 B
Plaintext
40 lines
456 B
Plaintext
# Config with secrets — never commit
|
|
config/config.php
|
|
config/config.local.php
|
|
config/*.local.*
|
|
|
|
# Data directory
|
|
data/
|
|
|
|
# Dependencies and build
|
|
node_modules/
|
|
vendor/
|
|
lib/composer/
|
|
apps/*/node_modules/
|
|
apps/*/vendor/
|
|
apps/*/vendor-bin/*/vendor/
|
|
3rdparty/
|
|
dist/
|
|
build/
|
|
|
|
# IDE and OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs and temp
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
.npm/
|
|
|
|
# Backup
|
|
apps_backup/
|
|
|
|
# Deploy helper (optional)
|
|
push-to-git.sh
|
|
DEPLOY_TO_GIT.md
|