Don't comit binary files such as pickle files or SQLite files
parent
8ead84efd9
commit
5ae0c56af2
|
|
@ -9,6 +9,9 @@ virtualenv/
|
||||||
.pyenv/
|
.pyenv/
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
*.pickle
|
||||||
|
*.p
|
||||||
|
wordfreqapp.db
|
||||||
app/__init__.py
|
app/__init__.py
|
||||||
app/__pycache__/
|
app/__pycache__/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
@ -21,6 +24,7 @@ app/static/frequency/frequency_*.pickle
|
||||||
app/static/frequency/frequency.p
|
app/static/frequency/frequency.p
|
||||||
app/wordfreqapp.db
|
app/wordfreqapp.db
|
||||||
app/db/wordfreqapp.db
|
app/db/wordfreqapp.db
|
||||||
|
app/static/wordfreqapp.db
|
||||||
app/static/donate-the-author.jpg
|
app/static/donate-the-author.jpg
|
||||||
app/static/donate-the-author-hidden.jpg
|
app/static/donate-the-author-hidden.jpg
|
||||||
app/model/__pycache__/
|
app/model/__pycache__/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue