Skip to content

Instantly share code, notes, and snippets.

View stevefurley's full-sized avatar

Stephen Furley stevefurley

View GitHub Profile
@stevefurley
stevefurley / wordpress_setup
Created November 27, 2015 19:54
Setup wordpress database php 5 etc on codio
#! /bin/bash
echo "Installing stuff"
parts install php5 php5-apache2 php5-pdo-mysql php5-gd mysql composer
echo "starting things"
echo "parts stop apache2 mysql ; parts start apache2 mysql" > ~/startup.sh
chmod +x ~/startup.sh
~/startup.sh