Don't comit binary files such as pickle files or SQLite files

Alpha-snapshot20240618
Lan Hui 2026-03-19 15:48:32 +08:00
parent 8ead84efd9
commit 5ae0c56af2
1 changed files with 4 additions and 0 deletions

4
.gitignore vendored
View File

@ -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__/