- Add core module structure - Include admin interface - Add language support (en_US) - Include SQL schema - Add build configuration - Include documentation and licensing
50 lines
490 B
Plaintext
50 lines
490 B
Plaintext
# PHP
|
|
*.log
|
|
*.tmp
|
|
*.cache
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Dolibarr specific
|
|
documents/
|
|
temp/
|
|
conf/conf.php
|
|
conf/conf.php.new
|
|
conf/conf.php.sample
|
|
|
|
# Build artifacts
|
|
build/*.zip
|
|
build/*.tar.gz
|
|
build/*.tar.bz2
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.phpunit.result.cache
|
|
|
|
# Composer (if used)
|
|
vendor/
|
|
composer.lock
|
|
|
|
# Node modules (if any frontend build tools)
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|