Skip to content

Instantly share code, notes, and snippets.

@regepan
Created April 27, 2025 10:13
Show Gist options
  • Save regepan/28b77a546e5729c896f650e669291561 to your computer and use it in GitHub Desktop.
Save regepan/28b77a546e5729c896f650e669291561 to your computer and use it in GitHub Desktop.
<?php
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'local' );
/** Database username */
define( 'DB_USER', 'root' );
/** Database password */
define( 'DB_PASSWORD', 'root' );
/** Database hostname */
define( 'DB_HOST', 'localhost' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment