Spaces:
Running
on
T4
Running
on
T4
Commit
·
89616a9
1
Parent(s):
fa67b25
gitignore:
Browse files- .gitignore +44 -0
.gitignore
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dependencies
|
2 |
+
node_modules/
|
3 |
+
.pnpm-store/
|
4 |
+
|
5 |
+
# Build outputs
|
6 |
+
dist/
|
7 |
+
build/
|
8 |
+
|
9 |
+
# Environment files
|
10 |
+
.env
|
11 |
+
.env.*
|
12 |
+
!.env.example
|
13 |
+
|
14 |
+
# IDE and editor files
|
15 |
+
.vscode/
|
16 |
+
.idea/
|
17 |
+
*.swp
|
18 |
+
*.swo
|
19 |
+
.DS_Store
|
20 |
+
Thumbs.db
|
21 |
+
|
22 |
+
# Debug logs
|
23 |
+
npm-debug.log*
|
24 |
+
yarn-debug.log*
|
25 |
+
yarn-error.log*
|
26 |
+
pnpm-debug.log*
|
27 |
+
|
28 |
+
# Cache directories
|
29 |
+
.cache/
|
30 |
+
.temp/
|
31 |
+
.vite/
|
32 |
+
|
33 |
+
# Test coverage
|
34 |
+
coverage/
|
35 |
+
|
36 |
+
|
37 |
+
# Temporary files
|
38 |
+
*.tmp
|
39 |
+
*.temp
|
40 |
+
|
41 |
+
|
42 |
+
# System files
|
43 |
+
.DS_Store
|
44 |
+
desktop.ini
|