Spaces:
No application file
No application file
File size: 650 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?php
$parameters = [
'api_enabled' => true,
'api_enable_basic_auth' => true,
'db_driver' => 'pdo_mysql',
'db_host' => 'db',
'db_table_prefix' => null,
'db_port' => 3306,
'db_name' => 'db',
'db_user' => 'db',
'db_password' => 'db',
'admin_email' => '[email protected]',
'admin_password' => 'Maut1cR0cks!',
'install_source' => 'DDEV',
'mailer_from_name' => 'DDEV',
'mailer_from_email' => '[email protected]',
'mailer_dsn' => 'smtp://localhost:1025',
];
|