-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
108 lines (84 loc) · 2.08 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
# 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