Use explicit app names in install scripts

Replace the generic ${APP} placeholder with explicit, consistently capitalized application names in install scripts to produce clearer log output. Affected scripts: install/{akaunting,blinko,dagu,gogs,invoiceshelf,matomo,papermark,rss-bridge,solidtime}-install.sh. Changes update msg_info and msg_ok messages only.
This commit is contained in:
CanbiZ (MickLesk)
2026-04-13 16:44:38 +02:00
parent 0dbf0b06ae
commit b2af68d233
9 changed files with 18 additions and 18 deletions

View File

@@ -25,7 +25,7 @@ PG_DB_NAME="solidtime" PG_DB_USER="solidtime" setup_postgresql_db
fetch_and_deploy_gh_release "solidtime" "solidtime-io/solidtime" "tarball"
msg_info "Setting up ${APP}"
msg_info "Setting up SolidTime"
cd /opt/solidtime
cp .env.example .env
APP_KEY=$($STD php artisan key:generate --show)
@@ -46,7 +46,7 @@ mkdir -p storage/framework/{cache,sessions,views} storage/logs bootstrap/cache
chown -R www-data:www-data /opt/solidtime
chmod -R 775 storage bootstrap/cache
$STD php artisan migrate --force
msg_ok "Set up ${APP}"
msg_ok "Set up SolidTime"
msg_info "Configuring Caddy"
PHP_VER=$(php -r 'echo PHP_MAJOR_VERSION . "." . PHP_MINOR_VERSION;')