@@ -39,8 +39,7 @@ The [deploy](#deploy) task of **TYPO3** consists of:
39
39
* [ typo3:cache: warmup ] ( /docs/recipe/typo3.md#typo3-cache-warmup ) – TYPO3 - Cache warmup for system caches
40
40
* [ typo3:extension: setup ] ( /docs/recipe/typo3.md#typo3-extension-setup ) – TYPO3 - Set up all extensions
41
41
* [ typo3:language: update ] ( /docs/recipe/typo3.md#typo3-language-update ) – TYPO3 - Update the language files of all activated extensions
42
- * [ typo3:cache: flush ] ( /docs/recipe/typo3.md#typo3-cache-flush ) – TYPO3 - Cache clearing for frontend caches
43
- * [ typo3:cache:pages: warmup ] ( /docs/recipe/typo3.md#typo3-cache-pages-warmup ) – TYPO3 - Cache warmup for frontend caches
42
+ * [ typo3:cache: flush ] ( /docs/recipe/typo3.md#typo3-cache-flush ) – TYPO3 - Clear all caches
44
43
* [ deploy: unlock ] ( /docs/recipe/deploy/lock.md#deploy-unlock ) – Unlocks deploy
45
44
* [ deploy: cleanup ] ( /docs/recipe/deploy/cleanup.md#deploy-cleanup ) – Cleanup old releases
46
45
* [ deploy: success ] ( /docs/recipe/common.md#deploy-success ) – Deploys your project
@@ -59,7 +58,7 @@ return json_decode(file_get_contents('./composer.json'), true, 512, JSON_THROW_O
59
58
```
60
59
61
60
62
- ### typo3_webroot
61
+ ### typo3/public_dir
63
62
[ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L17 )
64
63
65
64
DocumentRoot / WebRoot for the TYPO3 installation
@@ -100,49 +99,38 @@ Shared directories
100
99
101
100
``` php title="Default value"
102
101
[
103
- '{{typo3_webroot}}/fileadmin',
104
- '{{typo3_webroot}}/typo3temp',
105
- 'var/session',
106
- 'var/log',
102
+ '{{typo3/public_dir}}/fileadmin',
103
+ '{{typo3/public_dir}}/assets',
104
+ '{{typo3/public_dir}}/typo3temp/assets',
107
105
'var/lock',
108
- 'var/charset',
109
- ]
110
- ```
111
-
112
-
113
- ### shared_files
114
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L60 )
115
-
116
- Overrides [ shared_files] ( /docs/recipe/deploy/shared.md#shared_files ) from ` recipe/deploy/shared.php ` .
117
-
118
- Shared files
119
-
120
- ``` php title="Default value"
121
- [
122
- 'config/system/settings.php',
123
- '.env',
106
+ 'var/log',
107
+ 'var/session',
108
+ 'var/spool',
124
109
]
125
110
```
126
111
127
112
128
113
### writable_dirs
129
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L68 )
114
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L70 )
130
115
131
116
Overrides [ writable_dirs] ( /docs/recipe/deploy/writable.md#writable_dirs ) from ` recipe/deploy/writable.php ` .
132
117
133
118
Writeable directories
134
119
135
120
``` php title="Default value"
136
121
[
137
- '{{typo3_webroot}}/fileadmin',
138
- '{{typo3_webroot}}/typo3temp',
139
- 'var',
122
+ '{{typo3/public_dir}}/fileadmin',
123
+ '{{typo3/public_dir}}/assets',
124
+ '{{typo3/public_dir}}/typo3temp/assets',
125
+ 'var/cache',
126
+ 'var/lock',
127
+ 'var/log',
140
128
]
141
129
```
142
130
143
131
144
132
### composer_options
145
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L77 )
133
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L82 )
146
134
147
135
Overrides [ composer_options] ( /docs/recipe/deploy/vendors.md#composer_options ) from ` recipe/deploy/vendors.php ` .
148
136
@@ -154,7 +142,7 @@ Composer options
154
142
155
143
156
144
### use_rsync
157
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L83 )
145
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L88 )
158
146
159
147
If set in the config this recipe uses rsync. Default: false (use the Git repository)
160
148
@@ -164,7 +152,7 @@ false
164
152
165
153
166
154
### update_code_task
167
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L85 )
155
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L90 )
168
156
169
157
170
158
@@ -174,7 +162,7 @@ return get('use_rsync') ? 'rsync' : 'deploy:update_code';
174
162
175
163
176
164
### rsync
177
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L112 )
165
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L118 )
178
166
179
167
180
168
@@ -198,55 +186,47 @@ return get('use_rsync') ? 'rsync' : 'deploy:update_code';
198
186
## Tasks
199
187
200
188
### typo3\: update_code {#typo3-update_code}
201
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L89 )
202
-
203
-
204
-
189
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L94 )
205
190
206
191
207
192
208
- ### typo3\: cache\: warmup {#typo3-cache-warmup}
209
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L126 )
210
-
211
- TYPO3 - Cache warmup for system caches.
212
-
213
193
214
194
215
195
216
196
### typo3\: cache\: flush {#typo3-cache-flush}
217
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L132 )
197
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L133 )
218
198
219
- TYPO3 - Cache clearing for frontend caches.
199
+ TYPO3 - Clear all caches.
220
200
221
201
222
202
223
203
224
- ### typo3\: cache\: pages \: warmup {#typo3-cache-pages -warmup}
204
+ ### typo3\: cache\: warmup {#typo3-cache-warmup}
225
205
[ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L138 )
226
206
227
- TYPO3 - Cache warmup for frontend caches.
207
+ TYPO3 - Cache warmup for system caches.
228
208
229
209
230
210
231
211
232
212
### typo3\: language\: update {#typo3-language-update}
233
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L144 )
213
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L143 )
234
214
235
215
TYPO3 - Update the language files of all activated extensions.
236
216
237
217
238
218
239
219
240
220
### typo3\: extension\: setup {#typo3-extension-setup}
241
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L150 )
221
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L148 )
242
222
243
223
TYPO3 - Set up all extensions.
244
224
245
225
246
226
247
227
248
228
### deploy {#deploy}
249
- [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L159 )
229
+ [ Source] ( https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L156 )
250
230
251
231
Deploys a TYPO3 project.
252
232
@@ -266,7 +246,6 @@ This task is group task which contains next tasks:
266
246
* [ typo3:extension: setup ] ( /docs/recipe/typo3.md#typo3-extension-setup )
267
247
* [ typo3:language: update ] ( /docs/recipe/typo3.md#typo3-language-update )
268
248
* [ typo3:cache: flush ] ( /docs/recipe/typo3.md#typo3-cache-flush )
269
- * [ typo3:cache:pages: warmup ] ( /docs/recipe/typo3.md#typo3-cache-pages-warmup )
270
249
* [ deploy: unlock ] ( /docs/recipe/deploy/lock.md#deploy-unlock )
271
250
* [ deploy: cleanup ] ( /docs/recipe/deploy/cleanup.md#deploy-cleanup )
272
251
* [ deploy: success ] ( /docs/recipe/common.md#deploy-success )
0 commit comments