Skip to content

Commit 2bd7b3c

Browse files
committed
create repository
0 parents  commit 2bd7b3c

File tree

3 files changed

+759
-0
lines changed

3 files changed

+759
-0
lines changed

.gitignore

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
.idea/**/workspace.xml
2+
.idea/**/tasks.xml
3+
.idea/**/usage.statistics.xml
4+
.idea/**/dictionaries
5+
.idea/**/shelf
6+
.idea/**/aws.xml
7+
.idea/**/contentModel.xml
8+
.idea/**/dataSources/
9+
.idea/**/dataSources.ids
10+
.idea/**/dataSources.local.xml
11+
.idea/**/sqlDataSources.xml
12+
.idea/**/dynamic.xml
13+
.idea/**/uiDesigner.xml
14+
.idea/**/dbnavigator.xml
15+
.idea/**/gradle.xml
16+
.idea/**/libraries
17+
cmake-build-*/
18+
.idea/**/mongoSettings.xml
19+
*.iws
20+
out/
21+
.idea_modules/
22+
atlassian-ide-plugin.xml
23+
.idea/replstate.xml
24+
.idea/sonarlint/
25+
com_crashlytics_export_strings.xml
26+
crashlytics.properties
27+
crashlytics-build.properties
28+
fabric.properties
29+
.idea/httpRequests
30+
.idea/caches/build_file_checksums.ser
31+
__pycache__/
32+
*.py[cod]
33+
*$py.class
34+
*.so
35+
.Python
36+
build/
37+
develop-eggs/
38+
dist/
39+
downloads/
40+
eggs/
41+
.eggs/
42+
lib/
43+
lib64/
44+
parts/
45+
sdist/
46+
var/
47+
wheels/
48+
share/python-wheels/
49+
*.egg-info/
50+
.installed.cfg
51+
*.egg
52+
MANIFEST
53+
*.manifest
54+
*.spec
55+
pip-log.txt
56+
pip-delete-this-directory.txt
57+
htmlcov/
58+
.tox/
59+
.nox/
60+
.coverage
61+
.coverage.*
62+
.cache
63+
nosetests.xml
64+
coverage.xml
65+
*.cover
66+
*.py,cover
67+
.hypothesis/
68+
.pytest_cache/
69+
cover/
70+
*.mo
71+
*.pot
72+
*.log
73+
local_settings.py
74+
db.sqlite3
75+
db.sqlite3-journal
76+
instance/
77+
.webassets-cache
78+
.scrapy
79+
docs/_build/
80+
.pybuilder/
81+
target/
82+
.ipynb_checkpoints
83+
profile_default/
84+
ipython_config.py
85+
.pdm.toml
86+
__pypackages__/
87+
celerybeat-schedule
88+
celerybeat.pid
89+
*.sage.py
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
.spyderproject
98+
.spyproject
99+
.ropeproject
100+
/site
101+
.mypy_cache/
102+
.dmypy.json
103+
dmypy.json
104+
.pyre/
105+
.pytype/
106+
cython_debug/
107+
.idea
108+
.idea*
109+
.idea/*

0 commit comments

Comments
 (0)