From 11152fe2667fd7b68d1e53de317971edb29781ac Mon Sep 17 00:00:00 2001 From: pfeyz Date: Sat, 6 Dec 2025 19:40:32 -0500 Subject: [PATCH] don't embed ansi escape codes in appkey given that it's the recommended way to generate the code in the docs, redirecting stdout will produce an appkey that will make bookstack crash when it runs. this will affect anyone who is trying to automate the initial steps of deployment. i think this is likely the cause of this issue: https://github.com/BookStackApp/BookStack/issues/5289#issuecomment-2453680653 --- root/appkey | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/appkey b/root/appkey index 684439f..20e75c6 100755 --- a/root/appkey +++ b/root/appkey @@ -6,4 +6,4 @@ mkdir -p \ touch /config/log/bookstack/laravel.log -php /app/www/artisan key:generate --show +php /app/www/artisan key:generate --show --no-ansi