ontohub/indexer

View on GitHub
.gitignore

Summary

Maintainability
Test Coverage
# Ignore bundler config.
/.bundle
 
# Ignore agignore (ignore file for ag (like grep or ack))
.agignore
 
# Ignore sql files (generated by migrations)
*.sql
 
# Ignore swap files (generated by vim editor)
*.swp
*~
 
# Ignore folder attribute files
.DS_Store
 
# Ignore temporary files
tmp/**/*
*.orig
 
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
 
# Ignore packaged assets and uploads
/data
 
# Ignore output of SimpleCov
/coverage
 
# Ignore Byebug command history file.
.byebug_history
 
# Ignore local configuration files
config/settings.local.yml
config/settings/*.local.yml
config/environments/*.local.yml
config/environments/*.local.rb
.env.local
 
# We dont want to have migrations in this repository.
# Put them in ontohub-models.
db/migrate
 
# Ignore Vscode
.vscode/