-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
66 lines (53 loc) · 1.54 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
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global
# Ignore bundler config
/.bundle
# Ignore the default SQLite database.
/db/*.sqlite3*
# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
# No coverage crap in the repo!
/coverage
# Ignore local config
/config/app.yml
# Ignore vim swap files
.*.swp
#ignore full item dirs
braceros-tiffs
*_bags
/jetty
# No IDEs
.idea
# Hide compiled assets
/public/assets
# Checked-out directories for set-specific content and assets
#
# Rules:
#
# * We don't want to have anything "real" in app/assets/**/sets
# * We reserve set_content strictly to be the checked-out set repo
# * We ignore app/views/sets knowing that it ignores legitimate files, but to protect things from
# getting very weird (maybe crashy) if somebody does a "git add ." or similar.
/set_content
/app/assets/javascripts/sets
/app/assets/images/sets
/app/assets/stylesheets/sets
/app/views/sets/*
# Ignore derived images - in production they probably won't live here, but we still don't want
# to accidentally push any up during dev/test
/media
/public/media
/public/thumbnails
# Ignore deploy configuration files for God and Unicorn
# These sit on our production server and are symlinked in.
/config/god.conf
/config/unicorn.rb
/config/puma.rb
# Ignore Vagrant
/.vagrant/*
# Ignore circle ci rspec output
/rspec