Updated .gitignore
This commit is contained in:
parent
41883b0356
commit
0ef94ef5e6
108
.gitignore
vendored
108
.gitignore
vendored
@ -1,19 +1,11 @@
|
|||||||
|
# ============================
|
||||||
# 4NK Environment - Git Ignore
|
# 4NK Environment - Git Ignore
|
||||||
# ============================
|
# ============================
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# Configuration
|
||||||
|
# ----------------------------
|
||||||
confs/
|
confs/
|
||||||
# Dossiers de sauvegarde des scripts
|
|
||||||
**/backup/
|
|
||||||
**/*backup*
|
|
||||||
|
|
||||||
**/.cargo/
|
|
||||||
|
|
||||||
# Fichiers temporaires
|
|
||||||
**/*.tmp*
|
|
||||||
**/*.temp*
|
|
||||||
**/*.log*
|
|
||||||
**/*.pid*
|
|
||||||
|
|
||||||
# Fichiers de configuration locale
|
|
||||||
**/*.env*
|
**/*.env*
|
||||||
**/*.conf*
|
**/*.conf*
|
||||||
**/*.yaml*
|
**/*.yaml*
|
||||||
@ -23,57 +15,71 @@ confs/
|
|||||||
**/*.toml*
|
**/*.toml*
|
||||||
**/*.lock*
|
**/*.lock*
|
||||||
|
|
||||||
# Données et logs
|
# ----------------------------
|
||||||
|
# Backups
|
||||||
|
# ----------------------------
|
||||||
|
**/backup/
|
||||||
|
**/*backup*
|
||||||
|
**/*wallet*
|
||||||
|
**/*keys*
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# Temporary files & logs
|
||||||
|
# ----------------------------
|
||||||
|
**/*.tmp*
|
||||||
|
**/*.temp*
|
||||||
|
**/*.log*
|
||||||
**/*.logs*
|
**/*.logs*
|
||||||
**/*.data
|
**/*.pid*
|
||||||
*.db
|
*.db
|
||||||
*.sqlite
|
*.sqlite
|
||||||
|
**/*.data
|
||||||
|
|
||||||
# Certificats et clés
|
# ----------------------------
|
||||||
|
# Certificates & keys
|
||||||
|
# ----------------------------
|
||||||
|
ssl/
|
||||||
|
certs/
|
||||||
**/*.key
|
**/*.key
|
||||||
**/*.pem
|
**/*.pem
|
||||||
**/*.crt
|
**/*.crt
|
||||||
**/*.p12
|
**/*.p12
|
||||||
**/*.pfx
|
**/*.pfx
|
||||||
ssl/
|
|
||||||
certs/
|
|
||||||
|
|
||||||
# Docker
|
# ----------------------------
|
||||||
**/*.docker*
|
# Build / Cache
|
||||||
|
# ----------------------------
|
||||||
# Cache et build
|
**/node_modules/
|
||||||
**/*.node_modules/
|
**/dist/
|
||||||
**/*.dist/
|
**/build/
|
||||||
**/*build/
|
**/target/
|
||||||
**/*target/
|
package-lock.json
|
||||||
**/*.*.o
|
**/*.o
|
||||||
**/*.so
|
**/*.so
|
||||||
**/*.dylib
|
**/*.dylib
|
||||||
|
|
||||||
# IDE et éditeurs
|
# ----------------------------
|
||||||
**/*.vscode/
|
# IDE / Editors
|
||||||
**/*.idea/
|
# ----------------------------
|
||||||
**/*.swp
|
.vscode/
|
||||||
**/*.swo
|
.idea/
|
||||||
**/*~
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
# OS
|
# ----------------------------
|
||||||
**/*.DS_Store
|
# OS files
|
||||||
**/*Thumbs.db
|
# ----------------------------
|
||||||
**/*tmp*
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
*tmp*
|
||||||
|
|
||||||
# Git
|
# ----------------------------
|
||||||
**/*.git/
|
# Docker
|
||||||
**/*.orig*
|
# ----------------------------
|
||||||
|
**/*.docker*
|
||||||
|
|
||||||
# Backup des projets existants
|
# ----------------------------
|
||||||
**/*backup*
|
# Git internals
|
||||||
|
# ----------------------------
|
||||||
|
*.orig
|
||||||
**/*wallet*
|
|
||||||
**/*keys*
|
|
||||||
|
|
||||||
**/*node_modules*
|
|
||||||
**/*cursor*
|
|
||||||
**/*pid*
|
|
||||||
**/*next*
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user