mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
13 lines
276 B
Bash
Executable file
13 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
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
|