Ver Fonte

adding config for testing

Josef Straßl há 1 mês atrás
pai
commit
ea464ef450
2 ficheiros alterados com 9 adições e 9 exclusões
  1. 4 4
      config/app.php
  2. 5 5
      config/mail.php

+ 4 - 4
config/app.php

@@ -5,9 +5,9 @@ declare(strict_types=1);
 $root = dirname(__DIR__);
 
 return [
-    'project_name' => 'Feuerwehrverein Mitgliedsantrag',
-    'base_url' => '',
-    'contact_email' => 'vorstand@example.org',
+    'project_name' => 'Feuerwehr Freising Mitgliedsantrag',
+    'base_url' => 'https://antrag.med0.de',
+    'contact_email' => 'josef.strassl@feuerwehr-freising.de',
     'retention' => [
         'draft_days' => 14,
         'submission_days' => 90,
@@ -30,7 +30,7 @@ return [
         // Hash mit password_hash('DEIN-PASSWORT', PASSWORD_DEFAULT) erzeugen.
         'password_hash' => '',
         // Fallback nur für initiales Setup, danach löschen.
-        'password_plain_fallback' => 'change-me-now',
+        'password_plain_fallback' => 'testing',
         'session_timeout_seconds' => 3600,
     ],
     'storage' => [

+ 5 - 5
config/mail.php

@@ -3,13 +3,13 @@
 declare(strict_types=1);
 
 return [
-    'from' => 'no-reply@example.org',
+    'from' => 'antrag@med0.de',
     'recipients' => [
-        'vorstand@example.org',
-        'kasse@example.org',
+        'josef.strassl@check24.de',
+        'josef.strassl@feuerwehr-freising.de',
     ],
     'subjects' => [
-        'admin' => 'Neuer Mitgliedsantrag Feuerwehrverein',
-        'applicant' => 'Bestätigung Ihres Mitgliedsantrags',
+        'admin' => 'Neuer Mitgliedsantrag',
+        'applicant' => 'Bestätigung deines Mitgliedsantrags',
     ],
 ];