Novaciano commited on
Commit
8878f6e
·
verified ·
1 Parent(s): e5cf570

Create gitignore

Browse files
Files changed (1) hide show
  1. gitignore +363 -0
gitignore ADDED
@@ -0,0 +1,363 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by https://www.toptal.com/developers/gitignore/api/linux,macos,windows,python,jetbrains+all,visualstudiocode
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,windows,python,jetbrains+all,visualstudiocode
3
+
4
+ ### JetBrains+all ###
5
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7
+
8
+ # User-specific stuff
9
+ .idea/**/workspace.xml
10
+ .idea/**/tasks.xml
11
+ .idea/**/usage.statistics.xml
12
+ .idea/**/dictionaries
13
+ .idea/**/shelf
14
+
15
+ # AWS User-specific
16
+ .idea/**/aws.xml
17
+
18
+ # Generated files
19
+ .idea/**/contentModel.xml
20
+
21
+ # Sensitive or high-churn files
22
+ .idea/**/dataSources/
23
+ .idea/**/dataSources.ids
24
+ .idea/**/dataSources.local.xml
25
+ .idea/**/sqlDataSources.xml
26
+ .idea/**/dynamic.xml
27
+ .idea/**/uiDesigner.xml
28
+ .idea/**/dbnavigator.xml
29
+
30
+ # Gradle
31
+ .idea/**/gradle.xml
32
+ .idea/**/libraries
33
+
34
+ # Gradle and Maven with auto-import
35
+ # When using Gradle or Maven with auto-import, you should exclude module files,
36
+ # since they will be recreated, and may cause churn. Uncomment if using
37
+ # auto-import.
38
+ # .idea/artifacts
39
+ # .idea/compiler.xml
40
+ # .idea/jarRepositories.xml
41
+ # .idea/modules.xml
42
+ # .idea/*.iml
43
+ # .idea/modules
44
+ # *.iml
45
+ # *.ipr
46
+
47
+ # CMake
48
+ cmake-build-*/
49
+
50
+ # Mongo Explorer plugin
51
+ .idea/**/mongoSettings.xml
52
+
53
+ # File-based project format
54
+ *.iws
55
+
56
+ # IntelliJ
57
+ out/
58
+
59
+ # mpeltonen/sbt-idea plugin
60
+ .idea_modules/
61
+
62
+ # JIRA plugin
63
+ atlassian-ide-plugin.xml
64
+
65
+ # Cursive Clojure plugin
66
+ .idea/replstate.xml
67
+
68
+ # SonarLint plugin
69
+ .idea/sonarlint/
70
+
71
+ # Crashlytics plugin (for Android Studio and IntelliJ)
72
+ com_crashlytics_export_strings.xml
73
+ crashlytics.properties
74
+ crashlytics-build.properties
75
+ fabric.properties
76
+
77
+ # Editor-based Rest Client
78
+ .idea/httpRequests
79
+
80
+ # Android studio 3.1+ serialized cache file
81
+ .idea/caches/build_file_checksums.ser
82
+
83
+ ### JetBrains+all Patch ###
84
+ # Ignore everything but code style settings and run configurations
85
+ # that are supposed to be shared within teams.
86
+
87
+ .idea/*
88
+
89
+ !.idea/codeStyles
90
+ !.idea/runConfigurations
91
+
92
+ ### Linux ###
93
+ *~
94
+
95
+ # temporary files which can be created if a process still has a handle open of a deleted file
96
+ .fuse_hidden*
97
+
98
+ # KDE directory preferences
99
+ .directory
100
+
101
+ # Linux trash folder which might appear on any partition or disk
102
+ .Trash-*
103
+
104
+ # .nfs files are created when an open file is removed but is still being accessed
105
+ .nfs*
106
+
107
+ ### macOS ###
108
+ # General
109
+ .DS_Store
110
+ .AppleDouble
111
+ .LSOverride
112
+
113
+ # Icon must end with two \r
114
+ Icon
115
+
116
+ # Thumbnails
117
+ ._*
118
+
119
+ # Files that might appear in the root of a volume
120
+ .DocumentRevisions-V100
121
+ .fseventsd
122
+ .Spotlight-V100
123
+ .TemporaryItems
124
+ .Trashes
125
+ .VolumeIcon.icns
126
+ .com.apple.timemachine.donotpresent
127
+
128
+ # Directories potentially created on remote AFP share
129
+ .AppleDB
130
+ .AppleDesktop
131
+ Network Trash Folder
132
+ Temporary Items
133
+ .apdisk
134
+
135
+ ### macOS Patch ###
136
+ # iCloud generated files
137
+ *.icloud
138
+
139
+ ### Python ###
140
+ # Byte-compiled / optimized / DLL files
141
+ __pycache__/
142
+ *.py[cod]
143
+ *$py.class
144
+
145
+ # C extensions
146
+ *.so
147
+
148
+ # Distribution / packaging
149
+ .Python
150
+ build/
151
+ develop-eggs/
152
+ dist/
153
+ downloads/
154
+ eggs/
155
+ .eggs/
156
+ lib/
157
+ lib64/
158
+ parts/
159
+ sdist/
160
+ var/
161
+ wheels/
162
+ share/python-wheels/
163
+ *.egg-info/
164
+ .installed.cfg
165
+ *.egg
166
+ MANIFEST
167
+
168
+ # PyInstaller
169
+ # Usually these files are written by a python script from a template
170
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
171
+ *.manifest
172
+ *.spec
173
+
174
+ # Installer logs
175
+ pip-log.txt
176
+ pip-delete-this-directory.txt
177
+
178
+ # Unit test / coverage reports
179
+ htmlcov/
180
+ .tox/
181
+ .nox/
182
+ .coverage
183
+ .coverage.*
184
+ .cache
185
+ nosetests.xml
186
+ coverage.xml
187
+ *.cover
188
+ *.py,cover
189
+ .hypothesis/
190
+ .pytest_cache/
191
+ cover/
192
+
193
+ # Translations
194
+ *.mo
195
+ *.pot
196
+
197
+ # Django stuff:
198
+ *.log
199
+ local_settings.py
200
+ db.sqlite3
201
+ db.sqlite3-journal
202
+
203
+ # Flask stuff:
204
+ instance/
205
+ .webassets-cache
206
+
207
+ # Scrapy stuff:
208
+ .scrapy
209
+
210
+ # Sphinx documentation
211
+ docs/_build/
212
+
213
+ # PyBuilder
214
+ .pybuilder/
215
+ target/
216
+
217
+ # Jupyter Notebook
218
+ .ipynb_checkpoints
219
+
220
+ # IPython
221
+ profile_default/
222
+ ipython_config.py
223
+
224
+ # pyenv
225
+ # For a library or package, you might want to ignore these files since the code is
226
+ # intended to run in multiple environments; otherwise, check them in:
227
+ # .python-version
228
+
229
+ # pipenv
230
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
231
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
232
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
233
+ # install all needed dependencies.
234
+ #Pipfile.lock
235
+
236
+ # poetry
237
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
238
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
239
+ # commonly ignored for libraries.
240
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
241
+ #poetry.lock
242
+
243
+ # pdm
244
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
245
+ #pdm.lock
246
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
247
+ # in version control.
248
+ # https://pdm.fming.dev/#use-with-ide
249
+ .pdm.toml
250
+
251
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
252
+ __pypackages__/
253
+
254
+ # Celery stuff
255
+ celerybeat-schedule
256
+ celerybeat.pid
257
+
258
+ # SageMath parsed files
259
+ *.sage.py
260
+
261
+ # Environments
262
+ .env
263
+ .venv
264
+ env/
265
+ venv/
266
+ ENV/
267
+ env.bak/
268
+ venv.bak/
269
+
270
+ # Spyder project settings
271
+ .spyderproject
272
+ .spyproject
273
+
274
+ # Rope project settings
275
+ .ropeproject
276
+
277
+ # mkdocs documentation
278
+ /site
279
+
280
+ # mypy
281
+ .mypy_cache/
282
+ .dmypy.json
283
+ dmypy.json
284
+
285
+ # Pyre type checker
286
+ .pyre/
287
+
288
+ # pytype static type analyzer
289
+ .pytype/
290
+
291
+ # Cython debug symbols
292
+ cython_debug/
293
+
294
+ # PyCharm
295
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
296
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
297
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
298
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
299
+ #.idea/
300
+
301
+ ### Python Patch ###
302
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
303
+ poetry.toml
304
+
305
+ # ruff
306
+ .ruff_cache/
307
+
308
+ # LSP config files
309
+ pyrightconfig.json
310
+
311
+ ### VisualStudioCode ###
312
+ .vscode/*
313
+ !.vscode/settings.json
314
+ !.vscode/tasks.json
315
+ !.vscode/launch.json
316
+ !.vscode/extensions.json
317
+ !.vscode/*.code-snippets
318
+
319
+ # Local History for Visual Studio Code
320
+ .history/
321
+
322
+ # Built Visual Studio Code Extensions
323
+ *.vsix
324
+
325
+ ### VisualStudioCode Patch ###
326
+ # Ignore all local history of files
327
+ .history
328
+ .ionide
329
+
330
+ ### Windows ###
331
+ # Windows thumbnail cache files
332
+ Thumbs.db
333
+ Thumbs.db:encryptable
334
+ ehthumbs.db
335
+ ehthumbs_vista.db
336
+
337
+ # Dump file
338
+ *.stackdump
339
+
340
+ # Folder config file
341
+ [Dd]esktop.ini
342
+
343
+ # Recycle Bin used on file shares
344
+ $RECYCLE.BIN/
345
+
346
+ # Windows Installer files
347
+ *.cab
348
+ *.msi
349
+ *.msix
350
+ *.msm
351
+ *.msp
352
+
353
+ # Windows shortcuts
354
+ *.lnk
355
+
356
+ # End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,python,jetbrains+all,visualstudiocode
357
+
358
+ # Working folders
359
+ downloads/*
360
+ outputs/*
361
+ llama.cpp/
362
+
363
+ !*/.keep