Skip to content

Instantly share code, notes, and snippets.

@steinkel
Last active August 29, 2015 14:21
Show Gist options
  • Save steinkel/ad4101bbef37ac537001 to your computer and use it in GitHub Desktop.
Save steinkel/ad4101bbef37ac537001 to your computer and use it in GitHub Desktop.
Cakefest 2015 minimal setup
#!/bin/bash
#
# Hey, this is minimal
# curl -L gist-raw-url | bash
#
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y php5-cli git php5-intl screen cowsay mysql-server php5-mysql && \
echo "downloading composer" && \
curl -sS https://getcomposer.org/installer | php && \
echo "creating CakePHP project" && \
php composer.phar create-project cakephp/app cakefest && \
cd cakefest && \
chmod +x bin/cake && \
cowsay "screen -d -m bin/cake server -H check_your_azure_private_ip -p 8080"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment