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 3.7 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
  1. ### JupyterNotebooks ###
  2. # gitignore template for Jupyter Notebooks
  3. # website: http://jupyter.org/
  4. .ipynb_checkpoints
  5. */.ipynb_checkpoints/*
  6. # IPython
  7. profile_default/
  8. ipython_config.py
  9. # Remove previous ipynb_checkpoints
  10. # git rm -r .ipynb_checkpoints/
  11. ### Python ###
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. # C extensions
  17. *.so
  18. # Distribution / packaging
  19. .Python
  20. build/
  21. develop-eggs/
  22. dist/
  23. downloads/
  24. eggs/
  25. .eggs/
  26. lib/
  27. lib64/
  28. parts/
  29. sdist/
  30. var/
  31. wheels/
  32. share/python-wheels/
  33. *.egg-info/
  34. .installed.cfg
  35. *.egg
  36. MANIFEST
  37. # PyInstaller
  38. # Usually these files are written by a python script from a template
  39. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  40. *.manifest
  41. *.spec
  42. # Installer logs
  43. pip-log.txt
  44. pip-delete-this-directory.txt
  45. # Unit test / coverage reports
  46. htmlcov/
  47. .tox/
  48. .nox/
  49. .coverage
  50. .coverage.*
  51. .cache
  52. nosetests.xml
  53. coverage.xml
  54. *.cover
  55. *.py,cover
  56. .hypothesis/
  57. .pytest_cache/
  58. cover/
  59. # Translations
  60. *.mo
  61. *.pot
  62. # Django stuff:
  63. *.log
  64. local_settings.py
  65. db.sqlite3
  66. db.sqlite3-journal
  67. # Flask stuff:
  68. instance/
  69. .webassets-cache
  70. # Scrapy stuff:
  71. .scrapy
  72. # Sphinx documentation
  73. docs/_build/
  74. # PyBuilder
  75. .pybuilder/
  76. target/
  77. # Jupyter Notebook
  78. # IPython
  79. # pyenv
  80. # For a library or package, you might want to ignore these files since the code is
  81. # intended to run in multiple environments; otherwise, check them in:
  82. # .python-version
  83. # pipenv
  84. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  85. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  86. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  87. # install all needed dependencies.
  88. #Pipfile.lock
  89. # poetry
  90. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  91. # This is especially recommended for binary packages to ensure reproducibility, and is more
  92. # commonly ignored for libraries.
  93. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  94. #poetry.lock
  95. # pdm
  96. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  97. #pdm.lock
  98. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  99. # in version control.
  100. # https://pdm.fming.dev/#use-with-ide
  101. .pdm.toml
  102. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  103. __pypackages__/
  104. # Celery stuff
  105. celerybeat-schedule
  106. celerybeat.pid
  107. # SageMath parsed files
  108. *.sage.py
  109. # Environments
  110. .env
  111. .venv
  112. env/
  113. venv/
  114. ENV/
  115. env.bak/
  116. venv.bak/
  117. # Spyder project settings
  118. .spyderproject
  119. .spyproject
  120. # Rope project settings
  121. .ropeproject
  122. # mkdocs documentation
  123. /site
  124. # mypy
  125. .mypy_cache/
  126. .dmypy.json
  127. dmypy.json
  128. # Pyre type checker
  129. .pyre/
  130. # pytype static type analyzer
  131. .pytype/
  132. # Cython debug symbols
  133. cython_debug/
  134. # PyCharm
  135. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  136. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  137. # and can be added to the global gitignore or merged into this file. For a more nuclear
  138. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  139. #.idea/
  140. ### Python Patch ###
  141. # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
  142. poetry.toml
  143. ### VisualStudioCode ###
  144. .vscode/*
  145. !.vscode/settings.json
  146. !.vscode/tasks.json
  147. !.vscode/launch.json
  148. !.vscode/extensions.json
  149. !.vscode/*.code-snippets
  150. # Local History for Visual Studio Code
  151. .history/
  152. # Built Visual Studio Code Extensions
  153. *.vsix
  154. ### VisualStudioCode Patch ###
  155. # Ignore all local history of files
  156. .history
  157. .ionide
  158. ### MY STUFFS ###
  159. # temp folder
  160. temp
  161. # test file
  162. temp.*
Tip!

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

Comments

Loading...