-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
108 lines (93 loc) · 2.18 KB
/
Copy path.gitignore
File metadata and controls
108 lines (93 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# ==========================================
# Humans Only - .gitignore
# Weil manche Dinge einfach privat bleiben sollten
# (Wie deine Passwörter. Und deine Tanzvideos.)
# ==========================================
# ============ DEPENDENCIES ============
# Diese node_modules wiegen mehr als mein erstes Auto
node_modules/
.pnp
.pnp.js
# ============ BUILD OUTPUT ============
# Was in Vegas passiert, bleibt in Vegas
# Was beim Build passiert, bleibt lokal
.next/
out/
build/
dist/
*.tsbuildinfo
# ============ ENVIRONMENT ============
# Secrets gehören nicht auf GitHub
# Das hat schon bei WikiLeaks nicht gut funktioniert
.env
.env_new_Server
.env.local
.env.development.local
.env.test.local
.env.production.local
.env*.local
# Aber das Example darf rein
!.env.example
# ============ LOGS ============
# Niemand will deine Logs sehen
# Wirklich. Niemand.
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
logs/
# ============ OS GENERATED ============
# macOS: "Lass mich dir .DS_Store erklären..."
# Git: "Nein."
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ============ EDITOR/IDE ============
# Deine IDE-Einstellungen sind wie deine Zahnbürste:
# Jeder hat seine eigene, niemand will die der anderen
.idea/
.vscode/
*.swp
*.swo
*~
.project
.classpath
.settings/
# ============ TESTING ============
coverage/
.nyc_output/
test-results/
playwright-report/
# ============ MISC ============
# Zertifikate, PEM-Dateien, und andere
# "Das sollte eigentlich nicht hier sein"-Dateien
*.pem
*.key
*.crt
# Temporäre Dateien
*.tmp
*.temp
.cache/
# ============ PRISMA ============
# Generierte Prisma Client Dateien
# (werden beim npm install neu generiert)
# app/src/prisma/generated/ - Normalerweise ignoriert, hier behalten wir es
# ============ SCREENSHOTS ============
# Agent-Screenshots (lokale Tests)
screenshots/
*.screenshot.png
# ============ VERCEL ============
.vercel
# ============ TURBO ============
.turbo
# ==========================================
# Letzte Worte der Weisheit:
# "Git add -A" ohne .gitignore ist wie
# "Reply All" bei einer Firmen-E-Mail.
# Man lernt es nur einmal auf die harte Tour.
# ==========================================