Skip to content

jasonagnew/wordpress-starter-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WordPress Starter Kit

Basic folder structure for starting WordPress, including environment based configs & composer managed core.

Note: Uploads are ignored from git. Use WP Migrate DB Pro to handle media files & database syncing.

Database settings & Environments

To config your database per environment use the .env.example file - copy and rename to .env

APP_ENV=local
DB_NAME=wp_database
DB_USER=root
DB_PASSWORD=password
DB_HOST=localhost
WP_DEBUG=true
WP_LOCAL_DEV=true

Good Workflow with WordPress

While developing the site, its ideal to set up a demo site on a server based in your office. This acts as central location for a client to edit and add media files. Your local copy should point to the database of the demo site. This approach allows teams to work together while still developing locally. All deployments should be handled using git remotes. Media files can be synced locally by using WP Migrate DB Pro.

Once the site is live its easier to carry out any changes that affect the database on the live site (by which I mean panel changes like ACF etc.) then pull this database down to the demo site with WP Migrate DB Pro. And carry out the code changes locally and deploy through git when ready.

Managing Plugins with Composer

Below is example of the composer.json to manage plugins too:

{
  "name": "repo/name",
  "repositories": [
    {
      "type": "package",
      "package": {
        "name": "wordpress/wordpress",
        "type": "webroot",
        "version": "4.1.1",
        "source": {
          "type": "git",
          "url": "https://github.com/WordPress/WordPress.git",
          "reference": "4.1.1"
        },
        "require": {
          "fancyguy/webroot-installer": "1.0.0"
        }
      }
    },
    {
      "type":"composer",
      "url":"http://wpackagist.org"
    }
  ],
  "require": {
    "wordpress/wordpress": "4.1.*",
    "wpackagist-plugin/captcha":">=3.9"
  },
  "extra": {
    "webroot-dir": "public/wordpress",
    "webroot-package": "wordpress/wordpress",
    "installer-paths": {
      "public/content/plugins/{$name}/": ["type:wordpress-plugin"]
    }
  }
}

Don't forget to add public/content/plugins to your .gitignore

About

Basic folder structure for starting WordPress

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published