Edition de connexion_sql et ajout de gitignore et gitattributes et env
All checks were successful
Déploiement DEV / deploy (push) Successful in 8s
All checks were successful
Déploiement DEV / deploy (push) Successful in 8s
This commit is contained in:
112
.gitignore
vendored
112
.gitignore
vendored
@@ -1 +1,111 @@
|
||||
Thumbs.db
|
||||
# ----------------------
|
||||
# Personnalisé / PHP MVC
|
||||
# ----------------------
|
||||
# **/module/
|
||||
**/.env
|
||||
**/*.local
|
||||
**/*.config
|
||||
**/config/database.php
|
||||
**/documents
|
||||
**/Libs
|
||||
|
||||
# ----------------------
|
||||
# Node.js
|
||||
# ----------------------
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# ----------------------
|
||||
# Python
|
||||
# ----------------------
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
env/
|
||||
venv/
|
||||
*.egg-info/
|
||||
|
||||
# ----------------------
|
||||
# Java
|
||||
# ----------------------
|
||||
*.class
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
target/
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
# ----------------------
|
||||
# Visual Studio
|
||||
# ----------------------
|
||||
.vs/
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# ----------------------
|
||||
# macOS
|
||||
# ----------------------
|
||||
.DS_Store
|
||||
|
||||
# ----------------------
|
||||
# Windows
|
||||
# ----------------------
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# ----------------------
|
||||
# Logs
|
||||
# ----------------------
|
||||
*.log
|
||||
|
||||
# ----------------------
|
||||
# IDE-specific files
|
||||
# ----------------------
|
||||
.idea/
|
||||
.vscode/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# ----------------------
|
||||
# Other temporary / backup files
|
||||
# ----------------------
|
||||
*.bak
|
||||
*.tmp
|
||||
*.swp
|
||||
*.orig
|
||||
*.diff
|
||||
*.patch
|
||||
*.sqlite
|
||||
*.db
|
||||
*.tar.gz
|
||||
*.zip
|
||||
|
||||
# ----------------------
|
||||
# Documentation
|
||||
# ----------------------
|
||||
*.pdf
|
||||
*.docx
|
||||
|
||||
# ----------------------
|
||||
# Images
|
||||
# ----------------------
|
||||
# *.png
|
||||
# *.jpg
|
||||
# *.jpeg
|
||||
*.gif
|
||||
|
||||
# ----------------------
|
||||
# Output / build directories
|
||||
# ----------------------
|
||||
# dist/
|
||||
build/
|
||||
out/
|
||||
|
||||
Reference in New Issue
Block a user