git clone https://github.com/Bogardo/Wordpress-Stack.git .
rm -rf .git
This will download the latest version of WordPress to public/app
php wpcli core download --locale=nl_NL
Fill in the title
, url
and admin_*
fields
path: public/app/
core install:
title: <site title>
url: <site url (including http://)>
admin_user: <admin username>
admin_email: <admin email>
admin_password: <admin password>
This will create a new file at config/environments/development.php
php wpconf create development
Update config/environments/development.php
to include database settings and enable debugging.
This will install WordPress
php wpcli core install
(optional) copy the contents of public/app/wp-content
to your public/content
directory.
cp -R public/app/wp-content/* public/content/