Skip to content

Commit

Permalink
update docs/bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
flurinduerst committed Jun 7, 2018
1 parent 60da895 commit 7e9c13d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,8 @@

# CHANGELOG

## HEAD | 2.3.3 | 03.03.2018
## HEAD | 2.3.4 | 07.06.2018
* add WinNFSd support (thanks to @thursby)
* fix license-link in documentation (thanks to @mikaeljorhult)
* update default plugin list
* fix a bug where the `public` dir was not created on setup (thanks to @donaldCull)
Expand Down
12 changes: 7 additions & 5 deletions README.md
@@ -1,6 +1,6 @@
![Screenshot](http://files.flurinduerst.ch/wpdistillery/wpdistillery_logo.png)

**Version 2.3.3** (03.03.2018)
**Version 2.3.4** (07.06.2018)

Since V2.1.0 WPDistillery is fully compatible with Scotch Box 3.0

Expand Down Expand Up @@ -31,18 +31,20 @@ For your next project, you can use your `config.yml` as a personal template.
## Dependencies
- [ScotchBox](https://box.scotch.io) (using [Vagrant](https://vagrantup.com) & [Virtualbox](https://virtualbox.org))
- [Vagrant Hostsupdater](https://github.com/cogitatio/vagrant-hostsupdater) (`vagrant plugin install vagrant-hostsupdater`)
- *Optional* [Vagrant WinNFSd](https://github.com/winnfsd/vagrant-winnfsd) (`vagrant plugin install vagrant-winnfsd`) for a moderate speed increase

## Setup
To setup a new project running Scotch Box and WordPress, simply follow these steps:

1. `git clone https://github.com/flurinduerst/WPDistillery.git my-project`
1. customize `wpdistillery/config.yml` (see [configuration file documentation](README_CONFIG.md))
1. in `Vagrantfile`, add your local URL at `config.vm.hostname` (This should be the same as `wpsettings:url:` in `config.yml`)
1. Run `vagrant up` inside your project root
2. customize `wpdistillery/config.yml` (see [configuration file documentation](README_CONFIG.md))
3. in `Vagrantfile`, add your local URL at `config.vm.hostname` (This should be the same as `wpsettings:url:` in `config.yml`)
4. Run `vagrant up` inside your project root

Done! You can now access your project at the local URL (for example `yoursite.vm`) defined in step 3. (or at http://192.168.33.10/)

Note: Windows users may wish to `vagrant install plugin vagrant-winnfsd` before `vagrant up` for a moderate speed increase on sites with a lot of files. WPDistillery will detect WinNFSd support if needed. See [Vagrant WinNFSd](https://github.com/winnfsd/vagrant-winnfsd).


## Additional Information

#### WPDistillery with WP-Multisite
Expand Down
8 changes: 4 additions & 4 deletions Vagrantfile
Expand Up @@ -4,7 +4,7 @@
# WPDistillery Vagrantfile using Scotch Box
# Check out https://box.scotch.io to learn more about Scotch Box
#
# File Version: 1.2.0
# File Version: 1.2.1

Vagrant.configure("2") do |config|

Expand All @@ -13,9 +13,9 @@ Vagrant.configure("2") do |config|
config.vm.box = "scotch/box"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.hostname = "wpdistillery.vm"

# Use vagrant-winnfsd if available https://github.com/flurinduerst/WPDistillery/issues/78
if Vagrant.has_plugin? 'vagrant-winnfsd'
if Vagrant.has_plugin? 'vagrant-winnfsd'
config.vm.synced_folder ".", "/var/www",
nfs: true,
mount_options: [
Expand All @@ -29,7 +29,7 @@ Vagrant.configure("2") do |config|
else
config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"]
end

# WPDistillery Windows Support
if Vagrant::Util::Platform.windows?
config.vm.provision "shell",
Expand Down

0 comments on commit 7e9c13d

Please sign in to comment.