|
1 | 1 | #################################### |
2 | | -# Node / npm / yarn / pnpm |
| 2 | +# Dependencies |
3 | 3 | #################################### |
4 | 4 | node_modules/ |
| 5 | + |
| 6 | +# Yarn / pnpm |
| 7 | +.pnp |
| 8 | +.pnp.* |
| 9 | +.yarn/* |
| 10 | +!.yarn/patches |
| 11 | +!.yarn/plugins |
| 12 | +!.yarn/releases |
| 13 | +!.yarn/versions |
| 14 | + |
| 15 | +#################################### |
| 16 | +# Logs |
| 17 | +#################################### |
| 18 | +logs/ |
| 19 | +*.log |
5 | 20 | npm-debug.log* |
6 | 21 | yarn-debug.log* |
7 | 22 | yarn-error.log* |
8 | 23 | pnpm-debug.log* |
9 | | -package-lock.json |
10 | | -yarn.lock |
11 | | -pnpm-lock.yaml |
12 | 24 |
|
13 | 25 | #################################### |
14 | | -# Environments / secrets |
| 26 | +# Environment / Secrets |
15 | 27 | #################################### |
16 | 28 | .env |
17 | 29 | .env.* |
18 | 30 | !.env.example |
19 | 31 |
|
20 | 32 | #################################### |
21 | | -# Builds |
| 33 | +# Build / Production |
22 | 34 | #################################### |
23 | 35 | dist/ |
24 | 36 | build/ |
25 | 37 | coverage/ |
26 | 38 |
|
27 | | -#################################### |
28 | | -# React / CRA |
29 | | -#################################### |
30 | | -app/frontend/build/ |
31 | | -app/frontend/.env.local |
32 | | -app/frontend/.env.development.local |
33 | | -app/frontend/.env.test.local |
34 | | -app/frontend/.env.production.local |
35 | | - |
36 | | -#################################### |
37 | | -# Logs |
38 | | -#################################### |
39 | | -logs/ |
40 | | -*.log |
| 39 | +# Next.js |
| 40 | +.next/ |
| 41 | +out/ |
| 42 | +next-env.d.ts |
41 | 43 |
|
42 | 44 | #################################### |
43 | | -# Cache / temp |
| 45 | +# Cache / Temp |
44 | 46 | #################################### |
45 | 47 | .tmp/ |
46 | 48 | tmp/ |
47 | 49 | .cache/ |
48 | 50 | .eslintcache |
49 | 51 |
|
| 52 | +#################################### |
| 53 | +# Tests |
| 54 | +#################################### |
| 55 | +test-results/ |
| 56 | + |
50 | 57 | #################################### |
51 | 58 | # OS |
52 | 59 | #################################### |
53 | 60 | .DS_Store |
54 | 61 | Thumbs.db |
55 | 62 |
|
56 | 63 | #################################### |
57 | | -# IDE / editors |
| 64 | +# IDE |
58 | 65 | #################################### |
59 | 66 | .vscode/* |
60 | 67 | !.vscode/settings.json |
61 | 68 | !.vscode/extensions.json |
62 | | - |
63 | 69 | .idea/ |
64 | 70 | *.suo |
65 | 71 | *.ntvs* |
66 | 72 | *.njsproj |
67 | 73 | *.sln |
68 | 74 |
|
69 | 75 | #################################### |
70 | | -# Tests |
| 76 | +# TypeScript |
71 | 77 | #################################### |
72 | | -test-results/ |
73 | | -coverage/ |
| 78 | +*.tsbuildinfo |
74 | 79 |
|
75 | 80 | #################################### |
76 | | -# Misc |
| 81 | +# Docker |
77 | 82 | #################################### |
78 | | -*.pid |
79 | | -*.seed |
80 | | -*.pid.lock |
| 83 | +docker-compose.override.yml |
81 | 84 |
|
82 | 85 | #################################### |
83 | | -# Optional: TypeScript (si ajouté plus tard) |
| 86 | +# Vercel |
84 | 87 | #################################### |
85 | | -*.tsbuildinfo |
| 88 | +.vercel |
86 | 89 |
|
87 | 90 | #################################### |
88 | | -# Docker (si utilisé plus tard) |
| 91 | +# Misc |
89 | 92 | #################################### |
90 | | -docker-compose.override.yml |
91 | | - |
92 | | - |
93 | | -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
94 | | - |
95 | | -# dependencies |
96 | | -/node_modules |
97 | | -/.pnp |
98 | | -.pnp.* |
99 | | -.yarn/* |
100 | | -!.yarn/patches |
101 | | -!.yarn/plugins |
102 | | -!.yarn/releases |
103 | | -!.yarn/versions |
104 | | - |
105 | | -# testing |
106 | | -/coverage |
107 | | - |
108 | | -# next.js |
109 | | -/.next/ |
110 | | -/out/ |
111 | | - |
112 | | -# production |
113 | | -/build |
114 | | - |
115 | | -# misc |
116 | | -.DS_Store |
| 93 | +*.pid |
| 94 | +*.pid.lock |
| 95 | +*.seed |
117 | 96 | *.pem |
118 | | - |
119 | | -# debug |
120 | | -npm-debug.log* |
121 | | -yarn-debug.log* |
122 | | -yarn-error.log* |
123 | | -.pnpm-debug.log* |
124 | | - |
125 | | -# env files (can opt-in for committing if needed) |
126 | | -.env* |
127 | | - |
128 | | -# vercel |
129 | | -.vercel |
130 | | - |
131 | | -# typescript |
132 | | -*.tsbuildinfo |
133 | | -next-env.d.ts |
0 commit comments