-
Notifications
You must be signed in to change notification settings - Fork 19
/
.gitignore
58 lines (42 loc) · 1.43 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
# 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
/provision/github.token
# Ignore custom trigger scripts in config/homebin.
/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 a custom bash_prompt if it exists
/config/bash_prompt
# No need to share our mysql data with each other
/database/data/*
# Log files should be ignored.
/log/*.log
# 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 a default SQL file that should be included
!/database/init.sql
# And we provide our default host names in a dat file.
!/www/cividev-hosts
# And a few of our web directories are important to share.
/www/default/*
!/www/default/index.php
# But not the custom phpMyAdmin config in the database-admin directory.
/www/default/database-admin/config.inc.custom.php