Skip to content

Commit be2f0b0

Browse files
committed
Updated .gitignore
1 parent 401a13d commit be2f0b0

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

en/deploy/README.md

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,38 @@ Git will track changes to all the files and folders in this directory, but there
3636

3737
{% filename %}.gitignore{% endfilename %}
3838
```
39+
# Python
3940
*.pyc
4041
*~
41-
/.vscode
4242
__pycache__
43-
myvenv
43+
44+
# Env
45+
.env
46+
myvenv/
47+
venv/
48+
49+
# Database
4450
db.sqlite3
45-
/static
51+
52+
# Static folder
53+
static/
54+
55+
# macOS
56+
._*
4657
.DS_Store
58+
.fseventsd
59+
.Spotlight-V100
60+
61+
# Windows
62+
Thumbs.db*
63+
ehthumbs*.db
64+
[Dd]esktop.ini
65+
$RECYCLE.BIN/
66+
67+
# Visual Studio
68+
.vscode/
69+
.history/
70+
*.code-workspace
4771
```
4872

4973
And save it as `.gitignore` in the "djangogirls" folder.

0 commit comments

Comments
 (0)