-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
78 lines (58 loc) · 1.25 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
# ignore phpstorm ide files
.idea
.vagrant
# ignore vim files, vim backups, other backups:
*.swp
*~
*.bak
.~lock.*
# log files
*.log
# cache files, minified files
zend_cache*
/website/var/tmp/minified_*
# pimcore config file
/website/var/config/system.xml
/website/var/config/cache.xml
# versions
/website/var/versions/document/*
/website/var/versions/object/*
/website/var/versions/asset/*
/website/var/tmp/**/
/website/var/tmp/*.zip
/website/var/tmp/*.png
/website/var/tmp/*.jpeg
/website/var/tmp/*.xml
/website/var/tmp/*.css
/website/var/config/extensions.xml
/website/var/config/imagepipelines/
# db schema migrations
/website/var/system/*.sql
# generated classes
/website/var/classes/**
# trash
/website/var/recyclebin/**
# assets
/website/var/assets/*
# Website config
/website/var/config/website.xml
/website/var/config/reports.xml
/website/var/config/object/*
# google api token
/website/var/system/google-api.token
# maintenance
/website/var/system/maintenance.pid
# Locales
/website/var/config/texts/*
/website/var/system/import_translations*
# pimcore system
/pimcore
# temp files
/website/var/tmp/asset_*
# backups
/website/var/backup/*.tar
# csv import files
/website/var/system/import_*
# keep these two at the end of this file!
!.keep
!.dummy