forked from joshuakarjala/django-hunger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
executable file
·62 lines (46 loc) · 823 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
syntax: glob
# This line is a comment, and will be skipped.
# Empty lines are skipped too.
# Backup files left behind by the Emacs editor.
*~
*.egg
hunger.egg*
# Lock files used by the Emacs editor.
# Notice that the "#" character is quoted with a backslash.
# This prevents it from being interpreted as starting a comment.
.\#*
# Temporary files used by the vim editor.
.*.swp
# A hidden file created by the Mac OS X Finder.
.DS_Store
#python compiler
*.pyc
#pid files
*.pid
# textmate projects #
*.tmproj
#temporary! textmate files
._*.*
._*
# IntelliJ
.idea/*
*.iml
#directories
/media/admin
/media/uploads/*
/media/admin
/media/c/.sass-cache
/media/stats*
.sass-cache
/media/js/file-uploader
/django_hunger.egg-info
build/*
_build
.build
dist/*
.tox/
.coverage
media/c/m.scss
media/c/m.scss
*.sqlite
@*