forked from mlibrary/umrdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
140 lines (110 loc) · 2.04 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
135
136
137
138
139
140
# See https://help.github.com/articles/ignoring-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 some config
# These files should be copied from the $file.yml.sample and tweaked
# per environment. See bin/setup
config/analytics.yml
config/database.yml
config/secrets.yml
config/blacklight.yml
config/fedora.yml
config/solr.yml
config/redis.yml
config/resque-pool.yml
config/jetty.yml
config/umich.yml
config/doi.yml
config/browse_everything_providers.yml
config/arkivo.yml
config/zotero.yml
config/ezid.yml
config/clients_data/*
config/mcommunity.yml
config/puma.rb
config/*.p12
# Ignore bundler config.
/.bundle
# Ignore byebug history
.byebug_history
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# don't push around jetty (for dev envs only)
jetty
## SOLR Template Cores Data
# don't push around dev solr core templates data
/solr_cores/**/data
/solr_cores/umrdr-alpha
# don't push around fedora data
fcrepo4-data
## MAC OS
.DS_Store
._*
## TEXTMATE
*.tmproj
tmtags
## EMACS
*~
\#*
.\#*
## VIM
*.sw[pon]
*.sess
## OSX
.DS_Store
nohup.out
## Cucumber
rerun.txt
## rcov
coverage.data
coverage/*
## TEST APP
pkg/
spec/dummy/db/*.sqlite3
spec/dummy/log/*.log
spec/dummy/tmp/
spec/mock_upload_directory
## PROJECT::GENERAL
coverage
rdoc
pkg
/.bundle
db/*.sqlite3
db/*.sqlite3-journal
log/*.log
tmp
*.sqlite3
*.log
*~
*.swp
#redis snapshot db
dump.rdb
vendor/plugins/haml/init.rb
vendor/plugins/blacklight/.git
log/*
public/plugin_assets
public/plugin_assets/
.project
.buildpath
/.bundle
/.yardoc
/.idea
/doc
## PROJECT::SPECIFIC
## ASSET PIPELINE
.sass-cache/
public/assets/
## Paperclip assets
public/system/
## Sitemap
public/sitemap.xml
./spec/internal
./.internal_test_app
# Ignore actual settings files
config/settings.local.yml
config/settings/development.yml
config/settings/test.yml
config/settings/production.yml