Skip to content

Commit 748c534

Browse files
committed
Submission
0 parents  commit 748c534

File tree

119 files changed

+8199876
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+8199876
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)