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 1.6 KB

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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  1. # Project choices
  2. test_dvc.txt
  3. data.zip
  4. *.zip
  5. _archive
  6. _secrets
  7. data
  8. *.o
  9. *.so
  10. # Temp files
  11. *.bak
  12. .gitattributes
  13. .last_checked
  14. .gitconfig
  15. *.bak
  16. *.log
  17. *~
  18. ~*
  19. _tmp*
  20. tmp*
  21. tags
  22. # Byte-compiled / optimized / DLL files
  23. __pycache__/
  24. *.py[cod]
  25. *$py.class
  26. # C extensions
  27. *.so
  28. # Distribution / packaging
  29. .Python
  30. env/
  31. build/
  32. develop-eggs/
  33. dist/
  34. downloads/
  35. eggs/
  36. .eggs/
  37. lib/
  38. lib64/
  39. parts/
  40. sdist/
  41. var/
  42. wheels/
  43. *.egg-info/
  44. .installed.cfg
  45. *.egg
  46. # PyInstaller
  47. # Usually these files are written by a python script from a template
  48. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  49. *.manifest
  50. *.spec
  51. # Installer logs
  52. pip-log.txt
  53. pip-delete-this-directory.txt
  54. # Unit test / coverage reports
  55. htmlcov/
  56. .tox/
  57. .coverage
  58. .coverage.*
  59. .cache
  60. nosetests.xml
  61. coverage.xml
  62. *.cover
  63. .hypothesis/
  64. # Translations
  65. *.mo
  66. *.pot
  67. # Django stuff:
  68. *.log
  69. local_settings.py
  70. # Flask stuff:
  71. instance/
  72. .webassets-cache
  73. # Scrapy stuff:
  74. .scrapy
  75. # Sphinx documentation
  76. docs/_build/
  77. # PyBuilder
  78. target/
  79. # Jupyter Notebook
  80. .ipynb_checkpoints
  81. # pyenv
  82. .python-version
  83. # celery beat schedule file
  84. celerybeat-schedule
  85. # SageMath parsed files
  86. *.sage.py
  87. # dotenv
  88. .env
  89. # virtualenv
  90. .venv
  91. venv/
  92. ENV/
  93. *.code-workspace
  94. # Spyder project settings
  95. .spyderproject
  96. .spyproject
  97. # Rope project settings
  98. .ropeproject
  99. # mkdocs documentation
  100. /site
  101. # mypy
  102. .mypy_cache/
  103. .vscode
  104. *.swp
  105. # osx generated files
  106. .DS_Store
  107. .DS_Store?
  108. .Trashes
  109. ehthumbs.db
  110. Thumbs.db
  111. .idea
  112. # pytest
  113. .pytest_cache
  114. # tools/trust-doc-nbs
  115. docs_src/.last_checked
  116. # link checker
  117. checklink/cookies.txt
  118. # .gitconfig is now autogenerated
  119. .gitconfig
Tip!

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

Comments

Loading...