Skip to content

Commit

Permalink
Atualiza padrão de configuração com base no uso do frankenphp
Browse files Browse the repository at this point in the history
  • Loading branch information
lpirola committed Jun 14, 2024
1 parent 2d3b0cd commit a5c9b73
Show file tree
Hide file tree
Showing 7 changed files with 1,935 additions and 419 deletions.
2 changes: 1 addition & 1 deletion config/0.main.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
use \MapasCulturais\i;
// $_ENV['APP_MODE'] = 'development';
$_ENV['APP_MODE'] = 'development';

return [
/*
Expand Down
2 changes: 1 addition & 1 deletion config/db.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

return [
'db.host' => env('DB_HOST', 'db'),
'db.host' => env('DB_HOST', 'database'),
'db.dbname' => env('DB_NAME', 'mapas'),
'db.user' => env('DB_USER', 'mapas'),
'db.password' => env('DB_PASS', 'mapas'),
Expand Down
2 changes: 1 addition & 1 deletion config/mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
'mailer.transport' => env('MAILER_TRANSPORT'),
'mailer.transport' => 'smtp://mailhog:1025',
'mailer.from' => env('MAILER_FROM', '[email protected]'),
'mailer.alwaysTo' => env('MAILER_ALWAYSTO', false),
'mailer.bcc' => env('MAILER_BCC', ''),
Expand Down
Loading

0 comments on commit a5c9b73

Please sign in to comment.