Last active
August 29, 2015 14:21
-
-
Save steinkel/ad4101bbef37ac537001 to your computer and use it in GitHub Desktop.
Cakefest 2015 minimal setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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