<?php
/**
 * WordPress database configuration file.
 */

define( 'DB_NAME', 'wordpress' );
define( 'DB_USER', 'wordpress' );
define( 'DB_PASSWORD', 'password' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
define( 'DB_COLLATE', '' );

$table_prefix = 'wp_';

define( 'AUTH_KEY',         'temp' );
define( 'SECURE_AUTH_KEY',  'temp' );
define( 'LOGGED_IN_KEY',    'temp' );
define( 'NONCE_KEY',        'temp' );
define( 'AUTH_SALT',        'temp' );
define( 'SECURE_AUTH_SALT', 'temp' );
define( 'LOGGED_IN_SALT',   'temp' );
define( 'NONCE_SALT',       'temp' );

if ( ! defined( 'ABSPATH' ) ) {
    define( 'ABSPATH', dirname( __FILE__ ) . '/' );
}

require_once ABSPATH . 'wp-settings.php';
