Skip to content

Instantly share code, notes, and snippets.

@mustafauysal
Created January 18, 2014 20:04
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 mustafauysal/acf5e3d3d19d787659c4 to your computer and use it in GitHub Desktop.
Save mustafauysal/acf5e3d3d19d787659c4 to your computer and use it in GitHub Desktop.
Local config ex
<?php
//local configuraton
define( 'UBP_SITEURL', 'http://example.com'); // We'll talk about this later
define( 'UBP_IS_LOCAL', true );
define('DB_NAME', 'dev_db_name');
define('DB_USER', 'dev_db_username');
define('DB_PASSWORD', 'dev_db_pass');
define('DB_HOST', 'localhost');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment