Skip to content

Commit 8602720

Browse files
author
sofia.hale
committed
initial push
0 parents  commit 8602720

File tree

6 files changed

+615
-0
lines changed

6 files changed

+615
-0
lines changed

.gitignore

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Created by https://www.gitignore.io
2+
3+
### OSX ###
4+
.DS_Store
5+
.AppleDouble
6+
.LSOverride
7+
utils/
8+
core/
9+
community/
10+
.vscode/
11+
# Icon must end with two \r
12+
Icon
13+
14+
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear on external disk
19+
.Spotlight-V100
20+
.Trashes
21+
22+
# Directories potentially created on remote AFP share
23+
.AppleDB
24+
.AppleDesktop
25+
Network Trash Folder
26+
Temporary Items
27+
.apdisk
28+
29+
30+
### Python ###
31+
# Byte-compiled / optimized / DLL files
32+
__pycache__/
33+
*.py[cod]
34+
35+
# C extensions
36+
*.so
37+
38+
# Distribution / packaging
39+
.Python
40+
env/
41+
build/
42+
develop-eggs/
43+
dist/
44+
downloads/
45+
eggs/
46+
lib/
47+
lib64/
48+
parts/
49+
sdist/
50+
var/
51+
*.egg-info/
52+
.installed.cfg
53+
*.egg
54+
55+
# PyInstaller
56+
# Usually these files are written by a python script from a template
57+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
58+
*.manifest
59+
*.spec
60+
61+
# Installer logs
62+
pip-log.txt
63+
pip-delete-this-directory.txt
64+
65+
# Unit test / coverage reports
66+
htmlcov/
67+
.tox/
68+
.coverage
69+
.cache
70+
nosetests.xml
71+
coverage.xml
72+
73+
# Translations
74+
*.mo
75+
*.pot
76+
77+
# Sphinx documentation
78+
docs/_build/
79+
80+
# PyBuilder
81+
target/
82+
83+
84+
### Django ###
85+
*.log
86+
*.pot
87+
*.pyc
88+
__pycache__/
89+
local_settings.py
90+
91+
.env
92+
db.sqlite3

0 commit comments

Comments
 (0)