Commit
·
a18fed5
1
Parent(s):
2dbfb72
Add .gitignore.
Browse files- .gitignore +145 -0
.gitignore
ADDED
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### macOS ###
|
2 |
+
# General
|
3 |
+
.DS_Store
|
4 |
+
.AppleDouble
|
5 |
+
.LSOverride
|
6 |
+
|
7 |
+
# Icon must end with two \r
|
8 |
+
Icon
|
9 |
+
|
10 |
+
# Thumbnails
|
11 |
+
._*
|
12 |
+
|
13 |
+
# Files that might appear in the root of a volume
|
14 |
+
.DocumentRevisions-V100
|
15 |
+
.fseventsd
|
16 |
+
.Spotlight-V100
|
17 |
+
.TemporaryItems
|
18 |
+
.Trashes
|
19 |
+
.VolumeIcon.icns
|
20 |
+
.com.apple.timemachine.donotpresent
|
21 |
+
|
22 |
+
# Directories potentially created on remote AFP share
|
23 |
+
.AppleDB
|
24 |
+
.AppleDesktop
|
25 |
+
Network Trash Folder
|
26 |
+
Temporary Items
|
27 |
+
.apdisk
|
28 |
+
|
29 |
+
# Byte-compiled / optimized / DLL files
|
30 |
+
__pycache__/
|
31 |
+
*.py[cod]
|
32 |
+
*$py.class
|
33 |
+
|
34 |
+
# C extensions
|
35 |
+
*.so
|
36 |
+
|
37 |
+
# Distribution / packaging
|
38 |
+
.Python
|
39 |
+
env/
|
40 |
+
build/
|
41 |
+
develop-eggs/
|
42 |
+
dist/
|
43 |
+
downloads/
|
44 |
+
eggs/
|
45 |
+
.eggs/
|
46 |
+
lib/
|
47 |
+
lib64/
|
48 |
+
parts/
|
49 |
+
sdist/
|
50 |
+
var/
|
51 |
+
wheels/
|
52 |
+
*.egg-info/
|
53 |
+
.installed.cfg
|
54 |
+
*.egg
|
55 |
+
|
56 |
+
# PyInstaller
|
57 |
+
# Usually these files are written by a python script from a template
|
58 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
59 |
+
*.manifest
|
60 |
+
*.spec
|
61 |
+
|
62 |
+
# Installer logs
|
63 |
+
pip-log.txt
|
64 |
+
pip-delete-this-directory.txt
|
65 |
+
|
66 |
+
# Unit tests / coverage reports
|
67 |
+
htmlcov/
|
68 |
+
.tox/
|
69 |
+
.coverage
|
70 |
+
.coverage.*
|
71 |
+
.cache
|
72 |
+
nosetests.xml
|
73 |
+
coverage.xml
|
74 |
+
*.cover
|
75 |
+
.hypothesis/
|
76 |
+
|
77 |
+
# Translations
|
78 |
+
*.mo
|
79 |
+
*.pot
|
80 |
+
|
81 |
+
# Django stuff:
|
82 |
+
*.log
|
83 |
+
local_settings.py
|
84 |
+
|
85 |
+
# Flask stuff:
|
86 |
+
instance/
|
87 |
+
.webassets-cache
|
88 |
+
|
89 |
+
# Scrapy stuff:
|
90 |
+
.scrapy
|
91 |
+
|
92 |
+
# Sphinx documentation
|
93 |
+
docs/_build/
|
94 |
+
docs/build/
|
95 |
+
docs/docs/
|
96 |
+
|
97 |
+
# PyBuilder
|
98 |
+
target/
|
99 |
+
|
100 |
+
# Jupyter Notebook
|
101 |
+
.ipynb_checkpoints
|
102 |
+
|
103 |
+
# pyenv
|
104 |
+
.python-version
|
105 |
+
|
106 |
+
# celery beat schedule file
|
107 |
+
celerybeat-schedule
|
108 |
+
|
109 |
+
# SageMath parsed files
|
110 |
+
*.sage.py
|
111 |
+
|
112 |
+
# dotenv
|
113 |
+
.env
|
114 |
+
|
115 |
+
# virtualenv
|
116 |
+
.venv
|
117 |
+
venv/
|
118 |
+
ENV/
|
119 |
+
|
120 |
+
# Spyder project settings
|
121 |
+
.spyderproject
|
122 |
+
.spyproject
|
123 |
+
|
124 |
+
# Rope project settings
|
125 |
+
.ropeproject
|
126 |
+
|
127 |
+
# mkdocs documentation
|
128 |
+
/site
|
129 |
+
|
130 |
+
# mypy
|
131 |
+
.mypy_cache/
|
132 |
+
|
133 |
+
# datafiles
|
134 |
+
.xml
|
135 |
+
.pkl
|
136 |
+
|
137 |
+
# misc
|
138 |
+
.idea/
|
139 |
+
.iml
|
140 |
+
.dropbox
|
141 |
+
|
142 |
+
# media files
|
143 |
+
.png
|
144 |
+
.jpg
|
145 |
+
.pdf
|