Skip to content

Commit 2b7f384

Browse files
author
Benjamin H C Carr
committed
update to full .gitignore
1 parent fc02835 commit 2b7f384

File tree

1 file changed

+131
-5
lines changed

1 file changed

+131
-5
lines changed

.gitignore

Lines changed: 131 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,132 @@
1-
*.pyc
2-
.env
3-
.env*
4-
db.sqlite3
5-
staticfiles/*
1+
# Prerequisites #
2+
#################
3+
*.d
4+
5+
# Object files #
6+
################
7+
*.o
8+
*.ko
9+
*.obj
10+
*.elf
11+
12+
# Linker output #
13+
#################
14+
*.ilk
15+
*.map
16+
*.exp
17+
18+
# Precompiled Headers #
19+
#######################
20+
*.gch
21+
*.pch
22+
23+
# Libraries #
24+
#############
25+
*.lib
26+
*.a
27+
*.la
28+
*.lo
29+
30+
# Shared objects (inc. Windows DLLs) #
31+
######################################
32+
*.dll
33+
*.so
34+
*.so.*
35+
*.dylib
36+
37+
# Executables #
38+
###############
39+
*.exe
40+
*.out
41+
*.app
42+
*.i*86
43+
*.x86_64
44+
*.hex
45+
46+
# Debug files #
47+
###############
48+
*.dSYM/
49+
*.su
50+
*.idb
51+
*.pdb
52+
53+
# Packages #
54+
############
55+
# it's better to unpack these files and commit the raw source
56+
# git has its own built in compression methods
57+
*.7z
58+
*.dmg
59+
*.gz
60+
*.iso
61+
*.jar
62+
*.rar
63+
*.tar
64+
*.zip
665
*.AppImage
66+
67+
# Logs and databases #
68+
######################
69+
*.log
70+
*.sql
71+
*.sqlite
72+
73+
# OS generated files #
74+
######################
75+
76+
# OSX | macOS #
77+
.DS_Store
78+
.DS_Store?
79+
._*
80+
.AppleDouble
81+
.LSOverride
82+
.DocumentRevisions-V100
83+
.fseventsd
84+
.Spotlight-V100
85+
.TemporaryItems
86+
.Trashes
87+
.VolumeIcon.icns
88+
.com.apple.timemachine.donotpresent
89+
.AppleDB
90+
.AppleDesktop
91+
Network Trash Folder
92+
Temporary Items
93+
.apdisk
94+
95+
# Windows #
96+
.db
97+
ehthumbs.db
98+
ehthumbs_vista.db
99+
# Folder config file
100+
Desktop.ini
101+
# Recycle Bin used on file shares
102+
$RECYCLE.BIN/
103+
# Windows shortcuts
104+
*.lnkhumbs.db
105+
106+
# Miscellaneous #
107+
#################
108+
*.orig
109+
*.rej
110+
111+
# EMACS #
112+
#########
113+
*~
114+
\#*\#
115+
/.emacs.desktop
116+
/.emacs.desktop.lock
117+
*.elc
118+
auto-save-list
119+
tramp
120+
.\#*
121+
122+
# Vim #
123+
#######
124+
[._]*.s[a-v][a-z]
125+
[._]*.sw[a-p]
126+
[._]s[a-v][a-z]
127+
[._]sw[a-p]
128+
# session
129+
Session.vim
130+
# temporary
131+
.netrwhist
132+
*~

0 commit comments

Comments
 (0)