From 7e9c13dc06650895e187ee1f5014a37faa3e81e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flurin=20Du=CC=88rst?= Date: Thu, 7 Jun 2018 11:48:58 +0200 Subject: [PATCH] update docs/bump version --- CHANGELOG.md | 3 ++- README.md | 12 +++++++----- Vagrantfile | 8 ++++---- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce41f42..148fd00 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/README.md b/README.md index 5f72b56..9bd948c 100644 --- a/README.md +++ b/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 @@ -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 diff --git a/Vagrantfile b/Vagrantfile index a99c9a2..ee61afc 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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| @@ -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: [ @@ -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",