Skip to content

Commit 1095d93

Browse files
Update for Prestashop 1.7 (#3261)
1 parent 8918d73 commit 1095d93

File tree

1 file changed

+161
-22
lines changed

1 file changed

+161
-22
lines changed

Prestashop.gitignore

Lines changed: 161 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,173 @@
1-
# Private files
2-
# The following files contain your database credentials and other personal data.
1+
# Cache, temp and personal files
32

4-
config/settings.*.php
3+
/.htaccess
4+
*.log
55

6-
# Cache, temp and generated files
7-
# The following files are generated by PrestaShop.
8-
9-
admin-dev/autoupgrade/
6+
# Cache
107
/cache/*
11-
!/cache/index.php
12-
!/cache/*/
13-
/cache/*/*
8+
!/cache/.htaccess
149
!/cache/cachefs/index.php
10+
!/cache/deprecated.txt
11+
!/cache/index.php
1512
!/cache/purifier/index.php
13+
!/cache/push/activity
1614
!/cache/push/index.php
15+
!/cache/push/trends
1716
!/cache/sandbox/index.php
17+
!/cache/smarty/cache/index.php
18+
!/cache/smarty/compile/index.php
1819
!/cache/smarty/index.php
1920
!/cache/tcpdf/index.php
20-
config/xml/*.xml
21-
/log/*
22-
*sitemap.xml
23-
themes/*/cache/
24-
modules/*/config*.xml
2521

26-
# Site content
27-
# The following folders contain product images, virtual products, CSV's, etc.
22+
# Download
23+
/download/*
24+
!/download/.htaccess
25+
!/download/index.php
2826

29-
admin-dev/backups/
30-
admin-dev/export/
31-
admin-dev/import/
32-
download/
27+
# Images
3328
/img/*
34-
upload/
29+
!/img/.htaccess
30+
!/img/index.php
31+
!/img/404.gif
32+
!/img/bg_500.png
33+
!/img/bg_loader.png
34+
!/img/favicon.ico
35+
!/img/loader.gif
36+
!/img/loadingAnimation.gif
37+
!/img/logo.jpg
38+
!/img/logo.png
39+
!/img/logo_invoice.jpg
40+
!/img/logo_stores.png
41+
!/img/macFFBgHack.png
42+
!/img/prestashop-avatar.png
43+
44+
45+
46+
!/img/questionmark.png
47+
!/img/genders/index.php
48+
!/img/admin/index.php
49+
!/img/c/index.php
50+
!/img/cms/index.php
51+
!/img/co/index.php
52+
!/img/jquery-ui
53+
!/img/l/index.php
54+
!/img/m/index.php
55+
!/img/os/index.php
56+
!/img/p/index.php
57+
!/img/s/index.php
58+
!/img/scenes
59+
!/img/st/index.php
60+
!/img/su/index.php
61+
!/img/t/index.php
62+
!/img/tmp/index.php
63+
64+
# Upload
65+
/upload/*
66+
!/upload/.htaccess
67+
68+
/vendor/*
69+
/docs/phpdoc-sf/
70+
/composer.lock
71+
*.hot-update.js
72+
*.hot-update.json
73+
74+
75+
/admin-dev/autoupgrade/*
76+
!/admin-dev/autoupgrade/index.php
77+
!/admin-dev/autoupgrade/backup/index.php
78+
79+
/admin-dev/backups/*
80+
!/admin-dev/backups/.htaccess
81+
82+
/admin-dev/import/*
83+
!/admin-dev/import/.htaccess
84+
!/admin-dev/import/index.php
85+
86+
/admin-dev/export/*
87+
!/admin-dev/export/.htaccess
88+
!/admin-dev/export/index.php
89+
90+
# Downloaded RTL files
91+
/admin-dev/themes/default/css/bundle/default_rtl.css
92+
/admin-dev/themes/default/css/bundle/shared_rtl.css
93+
/admin-dev/themes/default/css/font_rtl.css
94+
/admin-dev/themes/default/css/overrides_rtl.css
95+
/admin-dev/themes/default/css/vendor/font-awesome/font-awesome_rtl.css
96+
/admin-dev/themes/default/css/vendor/nv.d3_rtl.css
97+
/admin-dev/themes/default/css/vendor/titatoggle-min_rtl.css
98+
/admin-dev/themes/default/public/theme_rtl.css
99+
/admin-dev/themes/new-theme/css/module/drop_rtl.css
100+
/admin-dev/themes/new-theme/css/right-sidebar_rtl.css
101+
102+
themes/*/cache/*
103+
104+
# Config
105+
106+
config/settings.inc.php
107+
config/settings.old.php
108+
config/xml/*
109+
config/themes/*
110+
!config/xml/themes/default.xml
111+
themes/*/config/settings_*.json
112+
app/config/parameters.old.yml
113+
app/config/config.php
114+
115+
# Themes, modules and overrides
116+
117+
modules/*
118+
override/*
119+
themes/*/
120+
!themes/classic
121+
!themes/_core
122+
!themes/_libraries
123+
124+
# Vendors and dependencies
125+
126+
bower_components/
127+
node_modules/
128+
composer.phar
129+
php-cs-fixer
130+
.grunt/*
131+
132+
# Translations and emails templates
133+
134+
translations/*
135+
mails/*
136+
!mails/themes/
137+
!mails/_partials/
138+
themes/default-bootstrap/lang/*
139+
themes/default-bootstrap/modules/*/translations/*.php
140+
themes/default-bootstrap/mails/*
141+
!themes/default-bootstrap/mails/en/
142+
themes/default-bootstrap/modules/*/mails/*
143+
!themes/default-bootstrap/modules/*/mails/en
144+
145+
# MISC
146+
147+
*sitemap.xml
148+
/robots.txt
149+
150+
# Symfony
151+
152+
/bin/
153+
/app/Resources/geoip/GeoLite2-City.mmdb
154+
/app/Resources/translations/*
155+
!/app/Resources/translations/default
156+
/app/config/parameters.yml
157+
/app/config/parameters.php
158+
/build/
159+
/phpunit.xml
160+
/var/*
161+
!/var/cache
162+
/var/cache/*
163+
!var/cache/.gitkeep
164+
!/var/logs
165+
/var/logs/*
166+
!var/logs/.gitkeep
167+
!/var/sessions
168+
/var/sessions/*
169+
!var/sessions/.gitkeep
170+
!var/SymfonyRequirements.php
171+
/vendor/
172+
/web/bundles/
173+

0 commit comments

Comments
 (0)