Reordered git excludes to have all env management tools in one place and added byebug history to list of excluded files.
This commit is contained in:
parent
40a663198c
commit
2f5ce86d28
1 changed files with 11 additions and 5 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
@ -22,6 +22,14 @@
|
||||||
# Ignore .rbenv-vars
|
# Ignore .rbenv-vars
|
||||||
/.rbenv-vars
|
/.rbenv-vars
|
||||||
|
|
||||||
|
# exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own
|
||||||
|
# see: https://github.com/laserlemon/figaro
|
||||||
|
# Ignore application configuration
|
||||||
|
/config/application.yml
|
||||||
|
|
||||||
|
# Ignore .envrc for direnv
|
||||||
|
/.envrc
|
||||||
|
|
||||||
# Ignore database config
|
# Ignore database config
|
||||||
/config/database.yml
|
/config/database.yml
|
||||||
|
|
||||||
|
@ -62,11 +70,6 @@
|
||||||
!/tmp/pids
|
!/tmp/pids
|
||||||
!/tmp/pids/.keep
|
!/tmp/pids/.keep
|
||||||
|
|
||||||
# exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own
|
|
||||||
# see: https://github.com/laserlemon/figaro
|
|
||||||
# Ignore application configuration
|
|
||||||
/config/application.yml
|
|
||||||
|
|
||||||
# ignore doorkeeper auto generated folder
|
# ignore doorkeeper auto generated folder
|
||||||
/public/assets/doorkeeper
|
/public/assets/doorkeeper
|
||||||
|
|
||||||
|
@ -78,3 +81,6 @@
|
||||||
!/public/assets/images/eyedropper.gif
|
!/public/assets/images/eyedropper.gif
|
||||||
!/public/assets/images/icons.svg
|
!/public/assets/images/icons.svg
|
||||||
!/public/assets/images/logo.svg
|
!/public/assets/images/logo.svg
|
||||||
|
|
||||||
|
# ignore byebug history
|
||||||
|
/.byebug_history
|
Loading…
Reference in a new issue