<?php

// Copy this file to multitenant.local.php on the server and replace the
// placeholder values. Never commit or send the filled-in file.
return array(
    'multi_tenant' => array(
        // Keep false until bin/tenant-doctor.php reports that both connections pass.
        'enabled' => false,
        'base_domain' => 'webdemo258.io.vn',
        'credential_key' => 'REPLACE_WITH_BASE64_32_BYTE_KEY',
        'legacy' => array(
            'uuid' => 'REPLACE_WITH_UUID_FROM_PLATFORM_TENANT_TB',
            'slug' => 'simple-edu-test',
            'name' => 'Simple Edu - Test',
        ),
        'platform_db' => array(
            'driver' => 'Pdo',
            'driver_options' => array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8mb4'"),
            'database_name' => 'webdemoo_simple_saas_platform',
            'dsn' => 'mysql:dbname=webdemoo_simple_saas_platform;host=localhost;port=3306',
            'username' => 'REPLACE_WITH_PLATFORM_DB_USERNAME',
            'password' => 'REPLACE_WITH_PLATFORM_DB_PASSWORD',
        ),
    ),
);
