Pārlūkot izejas kodu

Update app config, add description and rule env variables

Daniel Supernault 1 nedēļu atpakaļ
vecāks
revīzija
0980519a91
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 3 3
      config/app.php

+ 3 - 3
config/app.php

@@ -101,9 +101,9 @@ return [
 
     'cipher' => 'AES-256-CBC',
 
-    'short_description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.',
-    'description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.',
-    'rules' => null,
+    'short_description' => env('PF_SHORT_DESCRIPTION', 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.'),
+    'description' => env('PF_DESCRIPTION', 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.'),
+    'rules' => env('PF_RULES', null),
     'logo' => '/img/pixelfed-icon-color.svg',
     'banner_image' => '/storage/headers/default.jpg',
     'dev_log' => env('PIXELFED_DEV_LOG', false),