-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
73 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1 @@ | ||
# [Bedrock](https://roots.io/bedrock/) | ||
[![Build Status](https://travis-ci.org/roots/bedrock.svg)](https://travis-ci.org/roots/bedrock) | ||
|
||
Bedrock is a modern WordPress stack that helps you get started with the best development tools and project structure. | ||
|
||
Much of the philosophy behind Bedrock is inspired by the [Twelve-Factor App](http://12factor.net/) methodology including the [WordPress specific version](https://roots.io/twelve-factor-wordpress/). | ||
|
||
## Features | ||
|
||
* Better folder structure | ||
* Dependency management with [Composer](http://getcomposer.org) | ||
* Easy WordPress configuration with environment specific files | ||
* Environment variables with [Dotenv](https://github.com/vlucas/phpdotenv) | ||
* Autoloader for mu-plugins (use regular plugins as mu-plugins) | ||
* Enhanced security (separated web root and secure passwords with [wp-password-bcrypt](https://github.com/roots/wp-password-bcrypt)) | ||
|
||
Use [Trellis](https://github.com/roots/trellis) for additional features: | ||
|
||
* Easy development environments with [Vagrant](http://www.vagrantup.com/) | ||
* Easy server provisioning with [Ansible](http://www.ansible.com/) (Ubuntu 14.04, PHP 5.6 or HHVM, MariaDB) | ||
* One-command deploys | ||
|
||
See a complete working example in the [roots-example-project.com repo](https://github.com/roots/roots-example-project.com). | ||
|
||
## Requirements | ||
|
||
* PHP >= 5.5 | ||
* Composer - [Install](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx) | ||
|
||
## Installation | ||
|
||
1. Clone the git repo - `git clone https://github.com/roots/bedrock.git` | ||
2. Run `composer install` | ||
3. Copy `.env.example` to `.env` and update environment variables: | ||
* `DB_NAME` - Database name | ||
* `DB_USER` - Database user | ||
* `DB_PASSWORD` - Database password | ||
* `DB_HOST` - Database host | ||
* `WP_ENV` - Set to environment (`development`, `staging`, `production`) | ||
* `WP_HOME` - Full URL to WordPress home (http://example.com) | ||
* `WP_SITEURL` - Full URL to WordPress including subdirectory (http://example.com/wp) | ||
* `AUTH_KEY`, `SECURE_AUTH_KEY`, `LOGGED_IN_KEY`, `NONCE_KEY`, `AUTH_SALT`, `SECURE_AUTH_SALT`, `LOGGED_IN_SALT`, `NONCE_SALT` - Generate with [wp-cli-dotenv-command](https://github.com/aaemnnosttv/wp-cli-dotenv-command) or from the [WordPress Salt Generator](https://api.wordpress.org/secret-key/1.1/salt/) | ||
4. Add theme(s) in `web/app/themes` as you would for a normal WordPress site. | ||
5. Set your site vhost document root to `/path/to/site/web/` (`/path/to/site/current/web/` if using deploys) | ||
6. Access WP admin at `http://example.com/wp/wp-admin` | ||
|
||
## Deploys | ||
|
||
There are two methods to deploy Bedrock sites out of the box: | ||
|
||
* [Trellis](https://github.com/roots/trellis) | ||
* [bedrock-capistrano](https://github.com/roots/bedrock-capistrano) | ||
|
||
Any other deployment method can be used as well with one requirement: | ||
|
||
`composer install` must be run as part of the deploy process. | ||
|
||
## Documentation | ||
|
||
Bedrock documentation is available at [https://roots.io/bedrock/docs/](https://roots.io/bedrock/docs/). | ||
|
||
## Contributing | ||
|
||
Contributions are welcome from everyone. We have [contributing guidelines](CONTRIBUTING.md) to help you get started. | ||
|
||
## Community | ||
|
||
Keep track of development and community news. | ||
|
||
* Participate on the [Roots Discourse](https://discourse.roots.io/) | ||
* Follow [@rootswp on Twitter](https://twitter.com/rootswp) | ||
* Read and subscribe to the [Roots Blog](https://roots.io/blog/) | ||
* Subscribe to the [Roots Newsletter](https://roots.io/subscribe/) | ||
This a [Composer](https://getcomposer.org/) package to install a WordPress website based on [Bedrock](https://roots.io/bedrock/) along with the WordPress version of [CiviCRM](https://civicrm.org/wordpress). |