Update .gitignore
This commit is contained in:
225
.gitignore
vendored
225
.gitignore
vendored
@@ -1,12 +1,25 @@
|
|||||||
|
# ============================================================
|
||||||
|
# Environment and secrets
|
||||||
|
# ============================================================
|
||||||
.env
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.*.local
|
||||||
*.local.php
|
*.local.php
|
||||||
*.secret.php
|
*.secret.php
|
||||||
|
configuration.php
|
||||||
|
configuration.*.php
|
||||||
|
configuration.local.php
|
||||||
|
conf/conf.php
|
||||||
|
conf/conf*.php
|
||||||
|
secrets/
|
||||||
|
*.secrets.*
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# Logs, dumps & databases
|
# Logs, dumps and databases
|
||||||
# ============================================================
|
# ============================================================
|
||||||
|
*.db
|
||||||
|
*.db-journal
|
||||||
|
*.dump
|
||||||
*.log
|
*.log
|
||||||
*.pid
|
*.pid
|
||||||
*.seed
|
*.seed
|
||||||
@@ -14,8 +27,6 @@
|
|||||||
*.sql.gz
|
*.sql.gz
|
||||||
*.sqlite
|
*.sqlite
|
||||||
*.sqlite3
|
*.sqlite3
|
||||||
*.db
|
|
||||||
*.db-journal
|
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# OS / Editor / IDE cruft
|
# OS / Editor / IDE cruft
|
||||||
@@ -23,7 +34,6 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
desktop.ini
|
desktop.ini
|
||||||
# Windows artifacts
|
|
||||||
Thumbs.db:encryptable
|
Thumbs.db:encryptable
|
||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
ehthumbs_vista.db
|
ehthumbs_vista.db
|
||||||
@@ -32,37 +42,34 @@ System Volume Information/
|
|||||||
*.lnk
|
*.lnk
|
||||||
Icon?
|
Icon?
|
||||||
.idea/
|
.idea/
|
||||||
# .vscode/ - Allow specific VS Code config files
|
.settings/
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/tasks.json
|
!.vscode/tasks.json
|
||||||
!.vscode/settings.json.example
|
!.vscode/settings.json.example
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
*.sublime-project
|
*.sublime*
|
||||||
*.sublime-workspace
|
|
||||||
.project
|
.project
|
||||||
.settings/
|
|
||||||
.buildpath
|
.buildpath
|
||||||
|
.classpath
|
||||||
*.bak
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*.tmp
|
||||||
|
*.old
|
||||||
|
*.orig
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# Dev scripts & scratch
|
# Dev scripts and scratch
|
||||||
# ============================================================
|
# ============================================================
|
||||||
todo
|
TODO.md
|
||||||
todo.md
|
todo*
|
||||||
|
*ffs*
|
||||||
# ============================================================
|
|
||||||
# Maps & compiled asset helpers
|
|
||||||
# ============================================================
|
|
||||||
*.css.map
|
|
||||||
*.js.map
|
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# SFTP / sync tools
|
# SFTP / sync tools
|
||||||
# ============================================================
|
# ============================================================
|
||||||
sftp-config*.json
|
sftp-config*.json
|
||||||
sync.ffs_db
|
|
||||||
*.ffs_gui
|
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# Replit / cloud IDE
|
# Replit / cloud IDE
|
||||||
@@ -70,10 +77,136 @@ sync.ffs_db
|
|||||||
.replit
|
.replit
|
||||||
replit.md
|
replit.md
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# Archives / release artifacts
|
||||||
|
# ============================================================
|
||||||
|
*.7z
|
||||||
|
*.rar
|
||||||
|
*.tar
|
||||||
|
*.tar.gz
|
||||||
|
*.tgz
|
||||||
|
*.zip
|
||||||
|
artifacts/
|
||||||
|
release/
|
||||||
|
releases/
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# Build outputs and site generators
|
||||||
|
# ============================================================
|
||||||
|
.mkdocs-build/
|
||||||
|
.cache/
|
||||||
|
.parcel-cache/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
out/
|
||||||
|
site/
|
||||||
|
*.map
|
||||||
|
*.css.map
|
||||||
|
*.js.map
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# CI / test artifacts
|
||||||
|
# ============================================================
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
coverage/
|
||||||
|
coverage.xml
|
||||||
|
htmlcov/
|
||||||
|
junit.xml
|
||||||
|
reports/
|
||||||
|
test-results/
|
||||||
|
tests/_output/
|
||||||
|
.github/local/
|
||||||
|
.github/workflows/*.log
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# Node / JavaScript
|
||||||
|
# ============================================================
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
.pnpm-store/
|
||||||
|
.yarn/
|
||||||
|
.npmrc
|
||||||
|
.eslintcache
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# PHP / Composer tooling
|
||||||
|
# ============================================================
|
||||||
|
vendor/
|
||||||
|
composer.lock
|
||||||
|
*.phar
|
||||||
|
codeception.phar
|
||||||
|
.phpunit.result.cache
|
||||||
|
.php_cs.cache
|
||||||
|
.php-cs-fixer.cache
|
||||||
|
.phpstan.cache
|
||||||
|
.phplint-cache
|
||||||
|
phpmd-cache/
|
||||||
|
.psalm/
|
||||||
|
.rector/
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# Python
|
||||||
|
# ============================================================
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.pyc
|
||||||
|
*$py.class
|
||||||
|
*.so
|
||||||
|
.Python
|
||||||
|
.eggs/
|
||||||
|
*.egg
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
MANIFEST
|
||||||
|
develop-eggs/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
ENV/
|
||||||
|
env/
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
.pytest_cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.pyright/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
*.cover
|
||||||
|
*.coverage
|
||||||
|
hypothesis/
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
# Dolibarr (base + runtime)
|
||||||
|
# ============================================================
|
||||||
|
documents/
|
||||||
|
dolibarr_documents/
|
||||||
|
custom/
|
||||||
|
uploads/
|
||||||
|
thumbs/
|
||||||
|
data/
|
||||||
|
cache/
|
||||||
|
temp/
|
||||||
|
tmp/
|
||||||
|
logs/
|
||||||
|
htdocs/documents/
|
||||||
|
htdocs/custom/
|
||||||
|
htdocs/cache/
|
||||||
|
htdocs/tmp/
|
||||||
|
htdocs/logs/
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# Joomla Core
|
# Joomla Core
|
||||||
# ============================================================
|
# ============================================================
|
||||||
|
|
||||||
/.htaccess
|
/.htaccess
|
||||||
/administrator/cache/*
|
/administrator/cache/*
|
||||||
/administrator/components/com_actionlogs/*
|
/administrator/components/com_actionlogs/*
|
||||||
@@ -765,6 +898,7 @@ replit.md
|
|||||||
/plugins/user/profile/*
|
/plugins/user/profile/*
|
||||||
/plugins/user/terms/*
|
/plugins/user/terms/*
|
||||||
/plugins/user/index.html
|
/plugins/user/index.html
|
||||||
|
/plugins/user/index.html
|
||||||
/plugins/index.html
|
/plugins/index.html
|
||||||
/templates/beez3/*
|
/templates/beez3/*
|
||||||
/templates/protostar/*
|
/templates/protostar/*
|
||||||
@@ -780,57 +914,6 @@ replit.md
|
|||||||
/robots.txt.dist
|
/robots.txt.dist
|
||||||
/web.config.txt
|
/web.config.txt
|
||||||
|
|
||||||
|
|
||||||
# ============================================================
|
|
||||||
# Testing & Build artifacts
|
|
||||||
# ============================================================
|
|
||||||
/tests/_output/*
|
|
||||||
/dist/*
|
|
||||||
/vendor/*
|
|
||||||
/node_modules/*
|
|
||||||
composer.lock
|
|
||||||
package-lock.json
|
|
||||||
.phpunit.result.cache
|
|
||||||
codeception.phar
|
|
||||||
|
|
||||||
# Development tool artifacts
|
|
||||||
.phpstan.cache
|
|
||||||
.psalm/
|
|
||||||
.rector/
|
|
||||||
phpmd-cache/
|
|
||||||
.php-cs-fixer.cache
|
|
||||||
.phplint-cache
|
|
||||||
|
|
||||||
# Python
|
|
||||||
__pycache__/
|
|
||||||
*.py[cod]
|
|
||||||
*$py.class
|
|
||||||
*.so
|
|
||||||
.Python
|
|
||||||
build/
|
|
||||||
develop-eggs/
|
|
||||||
downloads/
|
|
||||||
eggs/
|
|
||||||
.eggs/
|
|
||||||
/lib/
|
|
||||||
/lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
wheels/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
|
||||||
MANIFEST
|
|
||||||
.pytest_cache/
|
|
||||||
.coverage
|
|
||||||
.coverage.*
|
|
||||||
htmlcov/
|
|
||||||
.tox/
|
|
||||||
.nox/
|
|
||||||
*.cover
|
|
||||||
.hypothesis/
|
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# Keep-empty folders helper
|
# Keep-empty folders helper
|
||||||
# ============================================================
|
# ============================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user