This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// demo sprite generation - edit core with the name of the folder you wish to use | |
// This tells compass to also print out the width & height into the css | |
$core-sprite-dimensions: true; | |
// Folder and file type to watch | |
@import "core/*.png"; | |
// Include Sprites ito stylesheet | |
@include all-core-sprites; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't add the Local settings file to the repository # | |
htdocs/wp-config-local.php | |
# If using SASS to compile stylesheets this saves conflicts, plus there not needed! # | |
htdocs/wp-content/themes/YOURTHEME/.sass-cache/* | |
# No need to add the upgrade folder to the repo # | |
htdocs/wp-content/upgrade/* | |
# sitemaps not needed locally # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Use these settings on the local server | |
if ( file_exists( dirname( __FILE__ ) . '/wp-config-local.php' ) ) { | |
include( dirname( __FILE__ ) . '/wp-config-local.php' ); | |
// Otherwise use the below settings (on live server) | |
} else { | |
// Live Server Database Settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Local server settings | |
// Local Database | |
define('DB_NAME', 'client'); | |
define('DB_USER', 'root'); | |
define('DB_PASSWORD', 'root'); | |
define('DB_HOST', 'localhost'); | |
// Overwrites the database to save keep edeting the DB |
NewerOlder