Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
nextdeploy/.gitignore
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
108 lines (84 sloc)
2.08 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 .swp | |
*.swp | |
# Ignore temporary folder | |
/tmp/* | |
!/tmp/.keep | |
# Ignore ember build folder | |
/ror/public/* | |
!/ror/public/.keep | |
# Ignore thumb folder | |
/ror/thumbs/* | |
!/ror/thumbs/default.png | |
# Ignore nohup file | |
nohup.out | |
# Ignore setting file | |
/ror/config/environments/production.rb | |
/ror/config/environments/development.rb | |
# Ignore pattern files | |
/ror/jsons/create_project.json | |
/ror/jsons/new_project.json | |
# Ignore sshkeys symlink | |
/puppet/pm/files/sshkeys | |
# Ignore bundler config. | |
.bundle | |
# Ignore yardoc folders | |
/ror/doc | |
/ror/.yardoc | |
# Ignore vendore gem folder | |
/ror/vendor/* | |
!/ror/vendor/.keep | |
# Ignore the default SQLite database. | |
/ror/db/*.sqlite3 | |
/ror/db/*.sqlite3-journal | |
# Ignore all logfiles and tempfiles. | |
/ror/log/*.log | |
!/ror/log/.keep | |
/ror/tmp/* | |
!/ror/tmp/.keep | |
# Ignore application.js who must be generated | |
/ror/public/javascripts/application.js | |
# Ignore hiera generated templates | |
/ror/hiera/* | |
!/ror/hiera/hiera.yaml | |
!/ror/hiera/global.yaml | |
# Ignore template file generated | |
/vagrant/os/hiera/uos*.yaml | |
/vagrant/os/hiera/global.yaml | |
/vagrant/os/Vagrantfile | |
/vagrant/nextdeploy/hiera/nextdeploy*.yaml | |
/vagrant/nextdeploy/hiera/global.yaml | |
/vagrant/nextdeploy/Vagrantfile | |
/vagrant/ndc2/hiera/ndc2*.yaml | |
/vagrant/ndc2/hiera/global.yaml | |
/vagrant/ndc2/Vagrantfile | |
# custom vcl folder | |
/vagrant/modules/pm/files/varnish/custom/* | |
!/vagrant/modules/pm/files/varnish/custom/.keep | |
# Ignore sshkeys | |
/ror/sshkeys/* | |
!/ror/sshkeys/.keep | |
# Ignore openvpn keys and duplicated conf | |
/ror/vpnkeys/* | |
!/ror/vpnkeys/.keep | |
!/ror/vpnkeys/bin | |
/ror/vpnkeys/bin/* | |
!/ror/vpnkeys/bin/.keep | |
!/ror/vpnkeys/bin/vars | |
!/ror/vpnkeys/bin/build-key | |
!/ror/vpnkeys/conf | |
#log folder | |
/out/* | |
!/out/.keep | |
#ember tmp app | |
/ember | |
#rubymine folder | |
.idea | |
#.vagrant folders | |
/vagrant/os/.vagrant | |
/vagrant/ndc2/.vagrant | |
/vagrant/nextdeploy/.vagrant |