Homestead on Steroids!
- VirtualBox 4.0 or higher
- Vagrant 6.0 or higher
- Windows users should additionally install the Git Bash to run the commands below
git clone https://github.com/alt3/cakebox.git
cd cakebox
vagrant upNote: the initial download of the (~2GB) box image could take some time so please be patient.
Once provisioning has completed you are ready to:
- Create your first website.
- Login to your Virtual Machine using the
vagrant sshcommand - Login to your Cakebox Dashboard by browsing to http://10.33.10.10
Full documentation found here.
Provision applications, databases and virtual hosts directly from the command line:
# Automatically configured framework skeleton applications
$ cakebox application add mycake3.app
$ cakebox application add mycake2.app --majorversion 2
$ cakebox application add mylaravel.app --framework laravel
# Git and Composer applications (both public and private)
$ cakebox application add mypublic.app --source http://github.com/your-name/repository
$ cakebox application add myprivate.app --source [email protected]:your-name/repository.git
$ cakebox application add myyii.app --source yiisoft/yii2-app-basic
# Databases and virtual hosts
$ cakebox database add holiday2015
$ cakebox site add idea.com /var/www/some-ideaComes with a dashboard for your convenience.