Skip to content

Instantly share code, notes, and snippets.

@leroyrosales
Last active May 4, 2022 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leroyrosales/05d3fc126fe75c37972e51ac6eb8368f to your computer and use it in GitHub Desktop.
Save leroyrosales/05d3fc126fe75c37972e51ac6eb8368f to your computer and use it in GitHub Desktop.
<?php
//Local development environment config file
// ** Local MySQL settings ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'wordpress' );
/** MySQL database password */
define( 'DB_PASSWORD', 'wordpress' );
/** MySQL hostname */
define( 'DB_HOST', 'database' );
/** 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', '' );
define( 'AUTH_KEY', '2JKpG}N{x5Y|iBlj_*+cbfkDh>QSN}~LDqpPx4un LJIMbR+,l7)tZ8cX= ~)~*S' );
define( 'SECURE_AUTH_KEY', 'KK&]%o:g_*] #_E9pUxGT $PQRE@.9M0@mg?0.lE~HH5-ynjw)m[SqHI9&4+zc.l' );
define( 'LOGGED_IN_KEY', 'A|%^gN33Uj?zR:@7|mKS`O@hqf*OOS^v3f=2/vN1w-j;WeLB;D[j7xR#_ViEXoT^' );
define( 'NONCE_KEY', '|xmKQlf(^?6G$Vw<>n,<U_2=F8-%%NUGqe.Ol:gy6yeJ#h4u0PP9us?uMn1-pS@~' );
define( 'AUTH_SALT', 'g<mIL|||3(u6A.d55#$YQ_IdP++gwe83v36O~ `udSLHmEatLT)9|;|r-k|84lKx' );
define( 'SECURE_AUTH_SALT', 'hm$5I7pR%|-PUMR+r-;Z{3XM|aij2,AZtW>K@ouP4Q%:Tv*62IDp`>#MlB98YNx8' );
define( 'LOGGED_IN_SALT', '*bB7uv$5bjJUU}>+~$^,E>-358SW]_j=WXgOLdU161,em%`u}4{,tpo`.Yd7FBWL' );
define( 'NONCE_SALT', 'Fjh:k}sqE`L}|Pf0f};W.OBu){N>NVAP1R9avml+yNPKQ6yEQR--|!0UxRp+hLmc' );
// phpcs:disable
// Ignoring since this override is only for local dev
$table_prefix = 'wp_';
// phpcs:enable
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment