silverback/skeleton

WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure


README

This bolerplate is based on Bedrock, a modern WordPress stack that helps you get started with the best development tools and project structure.

Features

  • Better folder structure
  • Dependency management with Composer
  • Easy WordPress configuration with environment specific files
  • Environment variables with Dotenv
  • Autoloader for mu-plugins (use regular plugins as mu-plugins)
  • Enhanced security (separated web root and secure passwords with roots.io's wp-password-bcrypt)

Requirements

Installation

  1. Create a new project:
    $ composer create-project silverback/wp-website
  2. Update environment variables in the .env file:
  • Database variables
    • DB_NAME - Database name
    • DB_USER - Database user
    • DB_PASSWORD - Database password
    • DB_HOST - Database host
    • Optionally, you can define DATABASE_URL for using a DSN instead of using the variables above (e.g. mysql://user:password@127.0.0.1:3306/db_name)
  • WP_ENV - Set to environment (development, staging, production)
  • WP_HOME - Full URL to WordPress home (https://localhost)
  • WP_SITEURL - Full URL to WordPress including /wp subdirectory (https://localhost/wp)
  • AUTH_KEY, SECURE_AUTH_KEY, LOGGED_IN_KEY, NONCE_KEY, AUTH_SALT, SECURE_AUTH_SALT, LOGGED_IN_SALT, NONCE_SALT
  1. Add theme(s) via composer require
  2. Set the document root on your webserver to app web folder: /path/to/site/web/
  3. Access WordPress admin at https://localhost/wp/wp-admin/

Development Environment with Docker

This boliperplate contains a pre-configured Docker environment with dedicated WP and MySQL containers. You can find a Visual Studio Code development guide in the .devcontainer folder (recommended) or you can manually launch it via docker-compose.yaml file.

Google App Engine

This boilerlate is made to be deployed to Google App Engine. Please read the GAE_DEPLOY guide.

Bedrock

Bedrock documentation is available at https://roots.io/bedrock/docs/.