Ajout gitignore
This commit is contained in:
parent
237ff8aa32
commit
0639538991
134
.gitignore
vendored
134
.gitignore
vendored
@ -1,49 +1,93 @@
|
|||||||
# ---> WordPress
|
# ESI CRVI Agenda Plugin - .gitignore
|
||||||
# Wordpress - ignore core, configuration, examples, uploads and logs.
|
|
||||||
# https://github.com/github/gitignore/blob/main/WordPress.gitignore
|
|
||||||
|
|
||||||
# Core
|
# ===========================
|
||||||
#
|
# Dependencies
|
||||||
# Note: if you want to stage/commit WP core files
|
# ===========================
|
||||||
# you can delete this whole section/until Configuration.
|
node_modules/
|
||||||
/wp-admin/
|
vendor/
|
||||||
/wp-content/index.php
|
|
||||||
/wp-content/languages
|
|
||||||
/wp-content/plugins/index.php
|
|
||||||
/wp-content/themes/index.php
|
|
||||||
/wp-includes/
|
|
||||||
/index.php
|
|
||||||
/license.txt
|
|
||||||
/readme.html
|
|
||||||
/wp-*.php
|
|
||||||
/xmlrpc.php
|
|
||||||
|
|
||||||
# Configuration
|
# ===========================
|
||||||
|
# Build files et distribution
|
||||||
|
# ===========================
|
||||||
|
assets/js/dist/
|
||||||
|
assets/js/dist_bis/
|
||||||
|
assets/js/new/dist/
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# Logs
|
||||||
|
# ===========================
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
error_log
|
||||||
|
debug.log
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# OS files
|
||||||
|
# ===========================
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
desktop.ini
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# IDE et éditeurs
|
||||||
|
# ===========================
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# Backups et fichiers temporaires
|
||||||
|
# ===========================
|
||||||
|
backup/
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
.*.swp
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# Fichiers compressés
|
||||||
|
# ===========================
|
||||||
|
*.zip
|
||||||
|
*.tar
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# Fichiers de test temporaires
|
||||||
|
# ===========================
|
||||||
|
test_*.html
|
||||||
|
debug_*.php
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# Données de test CSV
|
||||||
|
# ===========================
|
||||||
|
*_test.csv
|
||||||
|
beneficiaires_test.csv
|
||||||
|
intervenants_test.csv
|
||||||
|
locaux_test.csv
|
||||||
|
departements_interventions.csv
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# SQL dumps (sauf seeds)
|
||||||
|
# ===========================
|
||||||
|
*.sql
|
||||||
|
!seed_*.sql
|
||||||
|
|
||||||
|
# ===========================
|
||||||
|
# Environment et configuration sensible
|
||||||
|
# ===========================
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
wp-config.php
|
wp-config.php
|
||||||
|
|
||||||
# Example themes
|
# ===========================
|
||||||
/wp-content/themes/twenty*/
|
# Cache et fichiers générés
|
||||||
|
# ===========================
|
||||||
# Example plugin
|
.cache/
|
||||||
/wp-content/plugins/hello.php
|
*.cache
|
||||||
|
|
||||||
# Uploads
|
|
||||||
/wp-content/uploads/
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
*.log
|
|
||||||
|
|
||||||
# htaccess
|
|
||||||
/.htaccess
|
|
||||||
|
|
||||||
# All plugins
|
|
||||||
#
|
|
||||||
# Note: If you wish to whitelist plugins,
|
|
||||||
# uncomment the next line
|
|
||||||
#/wp-content/plugins
|
|
||||||
|
|
||||||
# All themes
|
|
||||||
#
|
|
||||||
# Note: If you wish to whitelist themes,
|
|
||||||
# uncomment the next line
|
|
||||||
#/wp-content/themes
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user