-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitignore
92 lines (77 loc) · 2.07 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
# 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 .env file
/blacklight-cornell/.env
/.env
# Ignore vcr.log file
/blacklight-cornell/vcr.log
/vcr.log
# Ignore bundler config
/blacklight-cornell/.bundle
/.bundle
# Ignore the default SQLite database.
/blacklight-cornell/db/*.sqlite3
/db/*.sqlite3
# Ignore all logfiles and tempfiles.
/blacklight-cornell/log/*.log
/log/*.log
/blacklight-cornell/tmp
/tmp
/blacklight-cornell/faraday.log
/faraday.log
/blacklight-cornell/eds-connection.log
/eds-connection.log
# Ignore config files with sensitive data
/blacklight-cornell/config/newrelic.yml
/config/newrelic.yml
# We need this file and no secret information is in this file anymore!
# /blacklight-cornell/config/database.yml
# Ignore precompiled assets
/blacklight-cornell/public/assets
/public/assets
# Ignore ENV file.
#/.env
# ignore coverage tests
/blacklight-cornell/coverage
/coverage
/blacklight-cornell/db/test.sqlite3-journal
/db/test.sqlite3-journal
# ignore tests Jenkins blacklight-cornell-merge-pr deletes
/blacklight-cornell/results/*
/results/*
/blacklight-cornell/features/cassettes/cucumber_tags/*
/features/cassettes/cucumber_tags/*
# Elastic Beanstalk Files
/blacklight-cornell/.elasticbeanstalk/*
/.elasticbeanstalk/*
!/blacklight-cornell/.elasticbeanstalk/*.cfg.yml
/.elasticbeanstalk/*.cfg.yml
!/blacklight-cornell/.elasticbeanstalk/*.global.yml
/.elasticbeanstalk/*.global.yml
# Ignore redis binary dump (dump.rdb) files
*.rdb
.DS_Store
.idea/*
#ignore dev tool
/blacklight-cornell/config/initializers/renderer.rb
/config/initializers/renderer.rb
# brakeman test results
brakeman-output.*
# byebug
.byebug_history
# container version - ignore mysql data
./data
/puma.sh
/set_env.sh
/test.sh
.devcontainer/
*.env
rails_env/*
!rails_env/test_env.example
# test timing output
test_timer_errors.txt
test_timer_temp.txt
test_timer_times.csv