From b64fd2dc0c3a55200d76727199534a103f40803e Mon Sep 17 00:00:00 2001 From: anmol26s Date: Thu, 2 May 2019 00:00:30 +0530 Subject: [PATCH] remove key genration in install --- scripts/install | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 6b970ba..5694509 100755 --- a/scripts/install +++ b/scripts/install @@ -194,7 +194,10 @@ ynh_replace_string "yunodomain" "$domain" "$final_path/.env" ynh_replace_string "__LANGUAGE__" "$language" "$final_path/.env" # setup application config -( cd $final_path && sudo /usr/bin/php artisan key:generate -n ) +( cd $final_path && sudo /usr/bin/php artisan key:generate -n --env) +( cd $final_path && sudo /usr/bin/php artisan migrate -n ) +( cd $final_path && sudo /usr/bin/php artisan config:clear -n) +( cd $final_path && sudo /usr/bin/php artisan config:cache -n) #================================================= # STORE THE CONFIG FILE CHECKSUM