mautic / .ddev /local.config.php.dist
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
650 Bytes
<?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',
];