samuelrince commited on
Commit
b555d36
·
1 Parent(s): 99e2d9b

chore: update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +264 -1
.gitignore CHANGED
@@ -1 +1,264 @@
1
- .venv
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Linux template
2
+ *~
3
+
4
+ # temporary files which can be created if a process still has a handle open of a deleted file
5
+ .fuse_hidden*
6
+
7
+ # KDE directory preferences
8
+ .directory
9
+
10
+ # Linux trash folder which might appear on any partition or disk
11
+ .Trash-*
12
+
13
+ # .nfs files are created when an open file is removed but is still being accessed
14
+ .nfs*
15
+
16
+ ### IDEs template
17
+ .vscode/
18
+ .idea/
19
+ .fleet/
20
+
21
+ ### Windows template
22
+ # Windows thumbnail cache files
23
+ Thumbs.db
24
+ Thumbs.db:encryptable
25
+ ehthumbs.db
26
+ ehthumbs_vista.db
27
+
28
+ # Dump file
29
+ *.stackdump
30
+
31
+ # Folder config file
32
+ [Dd]esktop.ini
33
+
34
+ # Recycle Bin used on file shares
35
+ $RECYCLE.BIN/
36
+
37
+ # Windows Installer files
38
+ *.cab
39
+ *.msi
40
+ *.msix
41
+ *.msm
42
+ *.msp
43
+
44
+ # Windows shortcuts
45
+ *.lnk
46
+
47
+ ### Archives template
48
+ # It's better to unpack these files and commit the raw source because
49
+ # git has its own built in compression methods.
50
+ *.7z
51
+ *.jar
52
+ *.rar
53
+ *.zip
54
+ *.gz
55
+ *.gzip
56
+ *.tgz
57
+ *.bzip
58
+ *.bzip2
59
+ *.bz2
60
+ *.xz
61
+ *.lzma
62
+ *.cab
63
+ *.xar
64
+ *.zst
65
+ *.tzst
66
+
67
+ # Packing-only formats
68
+ *.iso
69
+ *.tar
70
+
71
+ # Package management formats
72
+ *.dmg
73
+ *.xpi
74
+ *.gem
75
+ *.egg
76
+ *.deb
77
+ *.rpm
78
+ *.msi
79
+ *.msm
80
+ *.msp
81
+ *.txz
82
+
83
+ ### macOS template
84
+ # General
85
+ .DS_Store
86
+ .AppleDouble
87
+ .LSOverride
88
+
89
+ # Icon must end with two \r
90
+ Icon
91
+
92
+ # Thumbnails
93
+ ._*
94
+
95
+ # Files that might appear in the root of a volume
96
+ .DocumentRevisions-V100
97
+ .fseventsd
98
+ .Spotlight-V100
99
+ .TemporaryItems
100
+ .Trashes
101
+ .VolumeIcon.icns
102
+ .com.apple.timemachine.donotpresent
103
+
104
+ # Directories potentially created on remote AFP share
105
+ .AppleDB
106
+ .AppleDesktop
107
+ Network Trash Folder
108
+ Temporary Items
109
+ .apdisk
110
+
111
+ ### Python template
112
+ # Byte-compiled / optimized / DLL files
113
+ __pycache__/
114
+ *.py[cod]
115
+ *$py.class
116
+
117
+ # C extensions
118
+ *.so
119
+
120
+ # Distribution / packaging
121
+ .Python
122
+ build/
123
+ develop-eggs/
124
+ dist/
125
+ downloads/
126
+ eggs/
127
+ .eggs/
128
+ lib/
129
+ lib64/
130
+ parts/
131
+ sdist/
132
+ var/
133
+ wheels/
134
+ share/python-wheels/
135
+ *.egg-info/
136
+ .installed.cfg
137
+ *.egg
138
+ MANIFEST
139
+
140
+ # PyInstaller
141
+ # Usually these files are written by a python script from a template
142
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
143
+ *.manifest
144
+ *.spec
145
+
146
+ # Installer logs
147
+ pip-log.txt
148
+ pip-delete-this-directory.txt
149
+
150
+ # Unit test / coverage reports
151
+ htmlcov/
152
+ .tox/
153
+ .nox/
154
+ .coverage
155
+ .coverage.*
156
+ .cache
157
+ nosetests.xml
158
+ coverage.xml
159
+ *.cover
160
+ *.py,cover
161
+ .hypothesis/
162
+ .pytest_cache/
163
+ cover/
164
+
165
+ # Translations
166
+ *.mo
167
+ *.pot
168
+
169
+ # Django stuff:
170
+ *.log
171
+ local_settings.py
172
+ db.sqlite3
173
+ db.sqlite3-journal
174
+
175
+ # Flask stuff:
176
+ instance/
177
+ .webassets-cache
178
+
179
+ # Scrapy stuff:
180
+ .scrapy
181
+
182
+ # Sphinx documentation
183
+ docs/_build/
184
+
185
+ # PyBuilder
186
+ .pybuilder/
187
+ target/
188
+
189
+ # Jupyter Notebook
190
+ .ipynb_checkpoints
191
+
192
+ # IPython
193
+ profile_default/
194
+ ipython_config.py
195
+
196
+ # pyenv
197
+ # For a library or package, you might want to ignore these files since the code is
198
+ # intended to run in multiple environments; otherwise, check them in:
199
+ .python-version
200
+
201
+ # pipenv
202
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
203
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
204
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
205
+ # install all needed dependencies.
206
+ #Pipfile.lock
207
+
208
+ # poetry
209
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
210
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
211
+ # commonly ignored for libraries.
212
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
213
+ #poetry.lock
214
+
215
+ # pdm
216
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
217
+ #pdm.lock
218
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
219
+ # in version control.
220
+ # https://pdm.fming.dev/#use-with-ide
221
+ .pdm.toml
222
+
223
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
224
+ __pypackages__/
225
+
226
+ # Celery stuff
227
+ celerybeat-schedule
228
+ celerybeat.pid
229
+
230
+ # SageMath parsed files
231
+ *.sage.py
232
+
233
+ # Environments
234
+ .env
235
+ .venv
236
+ env/
237
+ venv/
238
+ ENV/
239
+ env.bak/
240
+ venv.bak/
241
+
242
+ # Spyder project settings
243
+ .spyderproject
244
+ .spyproject
245
+
246
+ # Rope project settings
247
+ .ropeproject
248
+
249
+ # mkdocs documentation
250
+ /site
251
+
252
+ # mypy
253
+ .mypy_cache/
254
+ .dmypy.json
255
+ dmypy.json
256
+
257
+ # Pyre type checker
258
+ .pyre/
259
+
260
+ # pytype static type analyzer
261
+ .pytype/
262
+
263
+ # Cython debug symbols
264
+ cython_debug/