-
Notifications
You must be signed in to change notification settings - Fork 847
/
.gitignore
83 lines (63 loc) · 1.93 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
# Stuff that pops up locally for me - @jeremyfelt
*.sublime*
.DS_Store
.idea
Icon?
Icon\r
Icon\r\r
# Because this really is a working directory, ignore vagrant's files
/.vagrant
vagrant.log
# This is a file intended for hooking in a custom Vagrant configuration on up
/Customfile
/vvv-custom.yml
/config/config.yml
# Allow for custom provisioning scripts that are not included with the repo
/provision/provision-custom.sh
/provision/provision-pre.sh
/provision/provision-post.sh
/provision/github.token
/provision/resources/
/provision/utilities/
/provision/extensions/
/provision/phpcs/
# Ignore custom trigger scripts in config/homebin.
/config/homebin/vagrant_up_custom
/config/homebin/vagrant_halt_custom
/config/homebin/vagrant_suspend_custom
/config/homebin/vagrant_destroy_custom
# No need to share individual site configs with each other
/config/nginx-config/sites/*.conf
# Ignore anything in the 'custom' directory in config
/config/custom/*
# Ignore the nvm git clone in the 'nvm' directory in config
/config/nvm/
# Ignore a custom bash_prompt if it exists
/config/bash_prompt
# Ignore downloaded wp-cli bash completions
/config/wp-cli/wp-completion.bash
# ignore the tideways custom config
/config/tideways.json
# No need to share our mysql data with each other
/database/data/*
# Log files should be ignored.
/log/*
!/log/README.md
# No need to share our individual sites with each other
/www/*
# And no need to share individual SQL files with each other
*.sql
*.sql.gz
# BUT....
# We do have some default nginx configs that should be included
!/config/nginx-config/sites/default.conf
!/config/nginx-config/sites/deprecated.conf
# And we do have a default SQL file that should be included
!/database/init.sql
# And we provide our default host names in a dat file.
!/www/vvv-hosts
# not the phpinfo
!/www/phpinfo
# But not the custom phpMyAdmin config in the database-admin directory.
/www/default/database-admin/config.inc.custom.php
/certificates