-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path.gitignore
134 lines (109 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Scripts
scripts/genBetaCodes.py
# Uploaded data
data/*
# Documentation
naturaldocs
# Custom files
static/files/*
!static/files/README.txt
# Import files
import/data/*
!import/data/README.txt
# Migration manage scripts
manage.py
backup.sql
sql/models.sql.*
generate_models.sh
scripts/generate_models.sh
# Tests and coverage
.coverage
htmlcov/
*,cover
#-----
# Ignore all compiled binaries
#-----
*.py[c|o]
# compiled translation files
*.mo
#-----
# Configuration files should not be checked in, only example files
#-----
lighttpd.conf*
!lighttpd.conf.sample
!lighttpd.conf.tmpl
config.yaml*
!config.yaml.tmpl
!config.yaml.sample
rcfile.*
!rcfile.sample
supervisor.conf
supervisord.conf
#-----
# Ignore log files
#-----
*logs*
*.log
#-----
# IDE files that are user-environment-specific
# But retain the example.* files since that's the template
#-----
# Eclipse/Aptana
.project
.pydevproject
org.eclipse.core.resources.prefs
.metadata
.settings
# vim/gvim related files
*.swo
*.swp
*~
.DS_Store
# environments
.env
cbu.env
#-----
# Ignore all temporary git-related files
# Not sure this is a good idea since we want to know when .orig files exist
#-----
# *.orig
#-----
# Ignore archives - if they need to be added they should be done manually
#-----
*.zip
*.tar
*.tar.gz
*.tgz
#-----
# Generally ignore binary assets, but this needs to be refined
#-----
# *.fla
# *.swf
# *.swc
#
#-----
# Ignore system processes and run files
#-----
# Necessary for the LigHTTPd pid file to be stored
run/*
*.pid
#-----
# Ignore any files that are user-specific.
# This is kind of a sloppy way of doing things, but works for now
#-----
*.sundar
# *.ethan
#-----
# Ignore all secret stuff
#-----
*.pem
*.crt
*.id_rsa
*.id_dsa
#-----
# Ignore all etc configurations, but keep templates and readme's
#-----
etc/*
!etc/*.tmpl
!etc/*README*
!etc/*.sample