Skip to content

Instantly share code, notes, and snippets.

@llakewood
llakewood / Makefile
Created October 21, 2016 14:46 — forked from pwenzel/Makefile
Wordpress Makefile Workflow
.PHONY: install
install: clean wordpress phpunit wp-cli
git submodule init;
@echo "\n\nNOTICE: You may need to configure a MySQL database for your Wordpress installation. Just run:"
@echo " mysql -u root -p;"
@echo " CREATE DATABASE example_site; \n"
wordpress: latest.tar.gz
tar -zxvf latest.tar.gz;