forked from Varying-Vagrant-Vagrants/VVV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
46 lines (33 loc) · 1.13 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
# Stuff that pops up locally for me - @jeremyfelt
*.sublime*
.DS_Store
.idea
# Because this really is a working directory, ignore vagrant's files
/.vagrant
# This is a file intended for hooking in a custom Vagrant configuration on up
/Customfile
# Allow for custom provisioning scripts that are not included with the repo
/provision/provision-custom.sh
/provision/provision-pre.sh
/provision/provision-post.sh
# 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/*
# No need to share our mysql data with each other
/database/data/*
# 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
# 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
# And a few of our web directories are important to share.
/www/default/*
!/www/default/index.php