Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 1007 B

You have to be logged in to leave a comment. Sign In
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
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. *.egg-info/
  20. .installed.cfg
  21. *.egg
  22. # Environment variables and secrets
  23. .env
  24. .env.*
  25. *.env
  26. environment.*.yml
  27. .secrets/
  28. # Virtual Environment
  29. **/venv/
  30. **/env/
  31. **/ENV/
  32. venv/
  33. env/
  34. ENV/
  35. # IDE
  36. .idea/
  37. .vscode/
  38. *.swp
  39. *.swo
  40. # MLflow
  41. mlruns/
  42. mlflow-artifacts/
  43. mlflow.db
  44. # Gradio
  45. .gradio/
  46. # DVC - we version the .dvc files but not the actual data
  47. /data/
  48. /metrics/
  49. # Node.js
  50. node_modules/
  51. npm-debug.log
  52. yarn-debug.log
  53. yarn-error.log
  54. .pnpm-debug.log
  55. # Frontend build
  56. frontend/dist/
  57. frontend/.cache/
  58. frontend/build/
  59. # Vite
  60. .vite/
  61. # TypeScript
  62. *.tsbuildinfo
  63. # Testing
  64. coverage/
  65. .nyc_output/
  66. # Logs
  67. logs
  68. *.log
  69. # OS specific files
  70. .DS_Store
  71. .DS_Store?
  72. ._*
  73. .Spotlight-V100
  74. .Trashes
  75. ehthumbs.db
  76. Thumbs.db
  77. # Jupyter Notebooks
  78. .ipynb_checkpoints
  79. *.ipynb
  80. # Logs
  81. logs/
  82. *.log
  83. # OS specific
  84. .DS_Store
  85. Thumbs.db
  86. /Users/a/Documents/DSA_hackathon/venv/
  87. project_integration.md
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...