monking / wp-boilerplate

WordPress multi environment boilerplate.

Home Page:http://gunnjerkens.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wp-boilerplate

usage

GunnJerkens Wordpress boilerplate theme + plugins

To initialize a new project, clone and then execute the interactive init.sh script.

./init.sh

This will remove the .git folder, initialize it as a new repo, loop through .gitmodules to initialize the submodules, and install the WordPress core as a submodule. Based on user responses it can also enter your environment variables into wp-config and will place an env_* file in the root. Prior to completion it will insert a fresh set of salts from the WordPress API and checkout WordPress to the latest stable version.

*Once you have completed the init script, make sure to set the gj-boilerplate theme to active, activate included plugins, and set your permalinks.

To change WordPress versions use:

cd public/wp
git checkout [version #]

To update WordPress versions:

cd public/wp
git fetch --all
git fetch --tags
git checkout [version #]

OR

If you have already updated and are pulling an update from an upstream branch:

cd public/wp
git fetch --tags
cd ../..
git submodule update

After initializing a new project, you can manually adjust any of the wp-config variables and also enter in your staging and production credentials if available.

The wp-config defaults for a local environment having a MySQL username of 'root' with a blank password. If you need different local configuration than your collaborators, put your special configurations in a JSON object inside env_local, matching the structure of the $env_default variable in wp-config.php. Here's an example:

{
  "db_host":"127.0.0.1",
  "db_user":"iownthistown",
  "db_pass":"fersher"
}

After configuring the /bin/config.sh (sample included) with require credentials you can clone assets.

To clone a production (or any upstream) database locally you can use db_sync:

bin/db_fetch.sh

To clone a production (or any upstream) uploads folder you can use uploads_sync:

bin/uploads_sync.sh go

Leave off go to do do a dry run, to only list files that will be copied.

To clone and edit the boilerplate repo normally, run git submodule update --init to retrieve submodules.

file structure

bin/
public/
  content/
  shared/
  wp/

The wp directory is a submodule and should not be modified in any way, the content directory houses themes and plugins. The Shared directory is where all uploaded files (via the WordPress backend) are stored.

After the init script completes make sure to login to the wp-admin panel and activate the GJ-Boilerplate theme and installed plugins!

grunt

wp-boilerplate uses Grunt to compress Javascript files and run Compass. Run npm install from the root directory to install node dependencies, then run grunt to watch for changes in js/src and style/sass in the theme directory.

To compile a dev environment (Live Reload, Concatenated JS, Watch):

grunt dev -v

To compile a production build (Uglify JS):

grunt prod -v

features

multi-environment handling in wp-config

Allows you to define settings for multiple environments. Each environment inherits settings from the $default settings array.

Create an empty file named env_local or env_staging in the web root folder (/public/) for it to pick up settings specific to those environments.

Environment hostnames are specified so that you don't have to do a search and replace in the database everytime you sync a database dump to a different environment.

easy password protection

Environments can have 'password_protect' => true. A function in the theme's functions.php will pick up on that and require a WP login to view the site if set to true.

embedded media uses domain-agnostic HTTP paths

A call is made for update_option('upload_url_path', '/content/uploads'); which forces media to be embedded with a src like /content/uploads/media.jpg instead of http://domain.com/wp-content/uploads/media.jpg. Coupled with defining the environment hostnames in wp-config.php, this enables us to not have to worry about doing a search & replace in the database when changing hostnames.

bin scripts

In the root there are /bin/ scripts that allow easy syncing of databases and images from an upstream environment.

included plugins

WordPress SEO (Yoast): Full featured SEO plugin for expert control over WordPress
Advanced Custom Fields: Great plugin that enables advanced CMS functionality in WordPress

included javascript

Modernizr
Bootstrap
jQuery Placeholder
jQuery imagesLoaded

All javascript (with exception of Modernizr, Respond, and jQuery (CDN) is compiled by Grunt into a 'main.js' file included in the footer. Bootstrap is included as a group of js files for easy customization && removal. Due to bootstrap files requiring a certain order in their compile they are called verbosely in the Gruntfile.js and need to be removed from that file if you are removing them from the project. Alternatively you can include Bootstrap via CDN if you uncomment it in the assets.php folder && make sure to remove it from your compiled JS.

included CSS

Bootstrap is included as an scss file, to use uncomment it in the screen.scss file. It import alls the individual scss files, delete at will for a customized Bootstrap build.

/* Bootstrap v3.2.0 */
//@import "bootstrap";

included fonts

Font Awesome is also included from the Bootstrap CDN, to use uncomment it in the assets.php file.

// Font Awesome stylesheet
// wp_enqueue_style('font-awesome', 'http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css', false, null, false);

default compass configuration

Includes default configuration for SASS/Compass, which comes highly recommended.

dependencies

node
Grunt: npm install -g grunt-cli
SASS: gem install sass
Compass: gem install compass
Compass Normalize: gem install compass-normalize
Compass rgbapng: gem install compass-rgbapng

license

MIT

About

WordPress multi environment boilerplate.

http://gunnjerkens.com

License:MIT License


Languages

Language:CSS 57.4%Language:JavaScript 37.1%Language:PHP 3.3%Language:Shell 2.2%Language:Ruby 0.1%