File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 21
21
disk : 2048
22
22
23
23
mounts :
24
- " app/cache " : { source: local, source_path: "var /cache" }
25
- " app/logs " : { source: local, source_path: "var /logs" }
24
+ " app/cache " : { source: local, source_path: "app /cache" }
25
+ " app/logs " : { source: local, source_path: "app /logs" }
26
26
27
27
hooks :
28
28
build : |
@@ -37,13 +37,13 @@ hooks:
37
37
38
38
# Keep the cache in a persistent directory
39
39
# If your cache can be read-only, you can skip this step
40
- (>&2 mkdir -p tmp/cache && mv var /cache/prod tmp/cache/ && mv var/bootstrap.php.cache tmp/bootstrap.php.cache)
40
+ (>&2 mkdir -p tmp/cache && mv app /cache/prod tmp/cache/ && mv var/bootstrap.php.cache tmp/bootstrap.php.cache)
41
41
42
42
deploy : |
43
43
set -x -e
44
44
45
45
# "install" cache
46
46
# If your cache can be read-only, you can skip these steps
47
- rm -rf var /cache/prod
47
+ rm -rf app /cache/prod
48
48
cp -Rp tmp/bootstrap.php.cache var/bootstrap.php.cache
49
- cp -Rp tmp/cache/prod var /cache/
49
+ cp -Rp tmp/cache/prod app /cache/
You can’t perform that action at this time.
0 commit comments