Gitignore deportiert
This commit is contained in:
+74
@@ -0,0 +1,74 @@
|
|||||||
|
# -----------------------------
|
||||||
|
# Node.js / React (Vite)
|
||||||
|
# -----------------------------
|
||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
.vite/
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Python / Flask
|
||||||
|
# -----------------------------
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
*.db
|
||||||
|
*.sqlite3
|
||||||
|
.Python
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
.venv/
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# VS Code Python
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Byte-compiled / Cache
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
__pycache__/
|
||||||
|
|
||||||
|
# Test / coverage
|
||||||
|
coverage/
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
|
||||||
|
# Flask
|
||||||
|
instance/
|
||||||
|
config.py
|
||||||
|
config.json
|
||||||
|
*.sqlite
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Docker
|
||||||
|
# -----------------------------
|
||||||
|
*.tar
|
||||||
|
*.pid
|
||||||
|
*.sock
|
||||||
|
*.img
|
||||||
|
build/
|
||||||
|
docker-compose.override.yml
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Systemdateien
|
||||||
|
# -----------------------------
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Optional: Editor-Dateien
|
||||||
|
# -----------------------------
|
||||||
|
.idea/
|
||||||
|
*.iml
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
node_modules
|
|
||||||
dist
|
|
||||||
dist-ssr
|
|
||||||
*.local
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.vscode/*
|
|
||||||
!.vscode/extensions.json
|
|
||||||
.idea
|
|
||||||
.DS_Store
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
||||||
Reference in New Issue
Block a user