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 5.9 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
  1. # Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,macos,linux,vim,pycharm,jupyternotebooks
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode,macos,linux,vim,pycharm,jupyternotebooks
  3. ### JupyterNotebooks ###
  4. # gitignore template for Jupyter Notebooks
  5. # website: http://jupyter.org/
  6. .ipynb_checkpoints
  7. */.ipynb_checkpoints/*
  8. # IPython
  9. profile_default/
  10. ipython_config.py
  11. # Remove previous ipynb_checkpoints
  12. # git rm -r .ipynb_checkpoints/
  13. ### Linux ###
  14. *~
  15. # temporary files which can be created if a process still has a handle open of a deleted file
  16. .fuse_hidden*
  17. # KDE directory preferences
  18. .directory
  19. # Linux trash folder which might appear on any partition or disk
  20. .Trash-*
  21. # .nfs files are created when an open file is removed but is still being accessed
  22. .nfs*
  23. ### macOS ###
  24. # General
  25. .DS_Store
  26. .AppleDouble
  27. .LSOverride
  28. # Icon must end with two \r
  29. Icon
  30. # Thumbnails
  31. ._*
  32. # Files that might appear in the root of a volume
  33. .DocumentRevisions-V100
  34. .fseventsd
  35. .Spotlight-V100
  36. .TemporaryItems
  37. .Trashes
  38. .VolumeIcon.icns
  39. .com.apple.timemachine.donotpresent
  40. # Directories potentially created on remote AFP share
  41. .AppleDB
  42. .AppleDesktop
  43. Network Trash Folder
  44. Temporary Items
  45. .apdisk
  46. ### PyCharm ###
  47. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  48. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  49. # User-specific stuff
  50. .idea/**/workspace.xml
  51. .idea/**/tasks.xml
  52. .idea/**/usage.statistics.xml
  53. .idea/**/dictionaries
  54. .idea/**/shelf
  55. # Generated files
  56. .idea/**/contentModel.xml
  57. # Sensitive or high-churn files
  58. .idea/**/dataSources/
  59. .idea/**/dataSources.ids
  60. .idea/**/dataSources.local.xml
  61. .idea/**/sqlDataSources.xml
  62. .idea/**/dynamic.xml
  63. .idea/**/uiDesigner.xml
  64. .idea/**/dbnavigator.xml
  65. # Gradle
  66. .idea/**/gradle.xml
  67. .idea/**/libraries
  68. # Gradle and Maven with auto-import
  69. # When using Gradle or Maven with auto-import, you should exclude module files,
  70. # since they will be recreated, and may cause churn. Uncomment if using
  71. # auto-import.
  72. # .idea/artifacts
  73. # .idea/compiler.xml
  74. # .idea/jarRepositories.xml
  75. # .idea/modules.xml
  76. # .idea/*.iml
  77. # .idea/modules
  78. # *.iml
  79. # *.ipr
  80. # CMake
  81. cmake-build-*/
  82. # Mongo Explorer plugin
  83. .idea/**/mongoSettings.xml
  84. # File-based project format
  85. *.iws
  86. # IntelliJ
  87. out/
  88. # mpeltonen/sbt-idea plugin
  89. .idea_modules/
  90. # JIRA plugin
  91. atlassian-ide-plugin.xml
  92. # Cursive Clojure plugin
  93. .idea/replstate.xml
  94. # Crashlytics plugin (for Android Studio and IntelliJ)
  95. com_crashlytics_export_strings.xml
  96. crashlytics.properties
  97. crashlytics-build.properties
  98. fabric.properties
  99. # Editor-based Rest Client
  100. .idea/httpRequests
  101. # Android studio 3.1+ serialized cache file
  102. .idea/caches/build_file_checksums.ser
  103. ### PyCharm Patch ###
  104. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  105. # *.iml
  106. # modules.xml
  107. # .idea/misc.xml
  108. # *.ipr
  109. # Sonarlint plugin
  110. # https://plugins.jetbrains.com/plugin/7973-sonarlint
  111. .idea/**/sonarlint/
  112. # SonarQube Plugin
  113. # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
  114. .idea/**/sonarIssues.xml
  115. # Markdown Navigator plugin
  116. # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
  117. .idea/**/markdown-navigator.xml
  118. .idea/**/markdown-navigator-enh.xml
  119. .idea/**/markdown-navigator/
  120. # Cache file creation bug
  121. # See https://youtrack.jetbrains.com/issue/JBR-2257
  122. .idea/$CACHE_FILE$
  123. # CodeStream plugin
  124. # https://plugins.jetbrains.com/plugin/12206-codestream
  125. .idea/codestream.xml
  126. ### Python ###
  127. # Byte-compiled / optimized / DLL files
  128. __pycache__/
  129. *.py[cod]
  130. *$py.class
  131. # C extensions
  132. *.so
  133. # Distribution / packaging
  134. .Python
  135. build/
  136. develop-eggs/
  137. dist/
  138. downloads/
  139. eggs/
  140. .eggs/
  141. lib/
  142. lib64/
  143. parts/
  144. sdist/
  145. var/
  146. wheels/
  147. pip-wheel-metadata/
  148. share/python-wheels/
  149. *.egg-info/
  150. .installed.cfg
  151. *.egg
  152. MANIFEST
  153. # PyInstaller
  154. # Usually these files are written by a python script from a template
  155. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  156. *.manifest
  157. *.spec
  158. # Installer logs
  159. pip-log.txt
  160. pip-delete-this-directory.txt
  161. # Unit test / coverage reports
  162. htmlcov/
  163. .tox/
  164. .nox/
  165. .coverage
  166. .coverage.*
  167. .cache
  168. nosetests.xml
  169. coverage.xml
  170. *.cover
  171. *.py,cover
  172. .hypothesis/
  173. .pytest_cache/
  174. pytestdebug.log
  175. # Translations
  176. *.mo
  177. *.pot
  178. # Django stuff:
  179. *.log
  180. local_settings.py
  181. db.sqlite3
  182. db.sqlite3-journal
  183. # Flask stuff:
  184. instance/
  185. .webassets-cache
  186. # Scrapy stuff:
  187. .scrapy
  188. # Sphinx documentation
  189. docs/_build/
  190. doc/_build/
  191. # PyBuilder
  192. target/
  193. # Jupyter Notebook
  194. # IPython
  195. # pyenv
  196. .python-version
  197. # pipenv
  198. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  199. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  200. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  201. # install all needed dependencies.
  202. #Pipfile.lock
  203. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  204. __pypackages__/
  205. # Celery stuff
  206. celerybeat-schedule
  207. celerybeat.pid
  208. # SageMath parsed files
  209. *.sage.py
  210. # Environments
  211. .env
  212. .venv
  213. env/
  214. venv/
  215. ENV/
  216. env.bak/
  217. venv.bak/
  218. pythonenv*
  219. # Spyder project settings
  220. .spyderproject
  221. .spyproject
  222. # Rope project settings
  223. .ropeproject
  224. # mkdocs documentation
  225. /site
  226. # mypy
  227. .mypy_cache/
  228. .dmypy.json
  229. dmypy.json
  230. # Pyre type checker
  231. .pyre/
  232. # pytype static type analyzer
  233. .pytype/
  234. # profiling data
  235. .prof
  236. ### Vim ###
  237. # Swap
  238. [._]*.s[a-v][a-z]
  239. !*.svg # comment out if you don't need vector files
  240. [._]*.sw[a-p]
  241. [._]s[a-rt-v][a-z]
  242. [._]ss[a-gi-z]
  243. [._]sw[a-p]
  244. # Session
  245. Session.vim
  246. Sessionx.vim
  247. # Temporary
  248. .netrwhist
  249. # Auto-generated tag files
  250. tags
  251. # Persistent undo
  252. [._]*.un~
  253. ### VisualStudioCode ###
  254. .vscode/*
  255. !.vscode/tasks.json
  256. !.vscode/launch.json
  257. *.code-workspace
  258. ### VisualStudioCode Patch ###
  259. # Ignore all local history of files
  260. .history
  261. .ionide
  262. # End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,macos,linux,vim,pycharm,jupyternotebooks
  263. /data
  264. /model
Tip!

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

Comments

Loading...