mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-29 17:53:16 +00:00
14 lines
245 B
Bash
14 lines
245 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
source /lib.sh
|
||
|
|
||
|
entrypoint_log "==> config:cache"
|
||
|
as_www_user php artisan config:cache
|
||
|
|
||
|
entrypoint_log "==> route:cache"
|
||
|
as_www_user php artisan route:cache
|
||
|
|
||
|
entrypoint_log "==> view:cache"
|
||
|
as_www_user php artisan view:cache
|