forked from ewbcanada/myewb2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
64 lines (52 loc) · 1.02 KB
/
.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
63
64
# git ignore file for myewb project
# ignore python compiled files
*.pyc
# ignore vim swp files and gedit temp files
*.swp
*.*~
# ignore db files
*.db
*.sqlite
# ignore local_settings and files
myewb/local_settings.py
myewb/settings.php
myewb/site_media
myewb/media/attachments
myewb/media/avatars
myewb/media/workspace
# ignore search index
myewb/myewb_index
# ignore any diff/patch files
*.diff
*.patch
*.log
# eclipse settings files
.project
.pydevproject
.settings
# ignore Mac folder settings files
.DS_Store
# ignore code coverage results (but keep the folder)
myewb/coverage_report/*
# cron logs, etc
myewb/cron/running.txt
myewb/cron/notrunning.txt
myewb/cron/lasterror.txt
myewb/cron/Mail/bad.txt
myewb/cron/Mail/banned.txt
myewb/cron/Mail/error.txt
# this is updated on the live site, keep it out of the repo...
myewb/templates/myewbstatus.html
myewb/templates/about/status.html
# and some random server stuff
.bash_history
.bashrc
.lesshst
.mysql_history
.ssh
.subversion
.toprc
.viminfo
myewb/errors.log
myewb/out.log
pinax