This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
.gitignore
77 lines (64 loc) · 1.71 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
# Ignore unnecessary folders.
.DS_Store
.phpintel
license.txt
install/*
*.sublime-project
*.sublime-workspace
# Ignore cache files.
!application/cache/*
application/cache/*
!application/cache/assets/
application/cache/assets/*
!application/cache/assets/.htaccess
# Ignore log files.
application/logs/*
!application/logs/.htaccess
# Remove generated encryption key file.
application/config/encryption_key.php
application/config/*/encryption_key.php
# Ignore test controller.
application/controllers/Test.php
# keep all .htaccess, .gitkeep and index.html
!**/.htaccess
!**/.gitkeep
!**/index.html
# Ignore all captcha images.
!content/captcha/
content/captcha/*
!content/captcha/index.html
content/cache-assets/*
# Ignore all uploaded files.
!content/uploads/
content/uploads/*
!content/uploads/index.html
!content/uploads/temp/
content/uploads/temp/*
!content/uploads/temp/index.html
!content/uploads/avatars/
content/uploads/avatars/*
!content/uploads/avatars/index.html
# Ignore all public modules except default ones.
# Think of removing or commenting the following lines
# if you want your plugins to be pushed to your repo.
!content/modules/
content/modules/*
!content/modules/index.html
!content/modules/dummy
# Ignore all plugins except default ones.
# Think of removing or commenting the following lines
# if you want your plugins to be pushed to your repo.
!content/plugins/
content/plugins/*
!content/plugins/index.html
# Ignore all themes except the default one.
# Think of removing or commenting the following lines
# if you want your themes to be pushed to your repo.
!content/themes/
content/themes/*
!content/themes/default/
# Sublime Text cache files
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace