Skip to content

Commit ee88776

Browse files
authored
Clean up .gitignore (#189)
* Add `.DS_Store` (macOS metadata files) * Add `.venv/` since it's a commonly used virtual environment directory name (the existing `venv/` name is still ignored too) * Switch from `*.pyc` to `__pycache__/` (the former is the Python 2 style) * The redundant `getting-started/*` entry has been removed (I presume this might have been a leftover from the "install local package as egg" days GUS-W-13312373.
1 parent 02eb141 commit ee88776

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.gitignore

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
venv
2-
*.pyc
3-
staticfiles
4-
.env
1+
# Python files
2+
__pycache__/
3+
.venv/
4+
venv/
5+
6+
# Django files
7+
staticfiles/
58
db.sqlite3
6-
getting-started/*
9+
10+
# macOS files
11+
.DS_Store

0 commit comments

Comments
 (0)