-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
94 lines (78 loc) · 1.85 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
##############################################
# @package olympus
# @author Achraf Chouk <[email protected]>
# @since 0.0.3
##############################################
# Composer
vendor/
composer.lock
# Capistrano
.bundle
# Useless auto-generated files
.DS_Store
.idea/
Thumbs.db
# Capistrano dist files
/app/deploy/*
!/app/deploy/config.rb.dist
/app/deploy/stages/*
!/app/deploy/stages/production.rb.dist
!/app/deploy/stages/staging.rb.dist
# Olympus dist files
/app/config/*
!/app/config/env.php.dist
!/app/config/opts.php.dist
!/app/config/own.php.dist
!/app/config/salt.php.dist
/app/cache/*
!/app/cache/.gitkeep
/app/logs/*
!/app/logs/.gitkeep
# Olympus auto-generated files
/web/.htaccess
/web/robots.txt
/web/pingback.php
/web/xmlrpc.php
# Olympus packages assets
/web/resources/*
!/web/resources/dist
!/web/resources/whoops
/web/resources/dist/css/*
!/web/resources/dist/css/.gitkeep
/web/resources/dist/fonts/*
!/web/resources/dist/fonts/.gitkeep
/web/resources/dist/img/*
!/web/resources/dist/img/.gitkeep
/web/resources/dist/js/*
!/web/resources/dist/js/.gitkeep
# WordPress core
/web/cms/*
!/web/cms/.gitkeep
# WordPress debug file
/web/statics/debug.log
# WordPress cache
/web/statics/cache/*
!/web/statics/cache/.gitkeep
# WordPress languages
/web/statics/languages/*
!/web/statics/languages/.gitkeep
!/web/statics/languages/index.php
# WordPress must use plugins
/web/statics/mu-plugins/*
!/web/statics/mu-plugins/.gitkeep
!/web/statics/mu-plugins/autoload.php
!/web/statics/mu-plugins/index.php
# WordPress plugins
/web/statics/plugins/*
!/web/statics/plugins/.gitkeep
!/web/statics/plugins/index.php
# WordPress themes
/web/statics/themes/*
!/web/statics/themes/.gitkeep
!/web/statics/themes/index.php
# WordPress upgrade
/web/statics/upgrade/
# WordPress uploads
/web/statics/uploads/*
!/web/statics/uploads/.gitkeep
!/web/statics/uploads/index.php