Last active
August 29, 2015 14:19
-
-
Save voxxit/de4e439b24f2137b24b4 to your computer and use it in GitHub Desktop.
installation steps for deis on OS X
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
| # the following are the commands to get deis up and running | |
| # on your OS X machine. i've made the assumption that you have | |
| # the latest versions of vagrant & virtualbox already | |
| # installed. | |
| # | |
| # if not... | |
| # | |
| # vagrant: https://www.vagrantup.com/downloads.html | |
| # virtualbox: https://www.virtualbox.org/wiki/Downloads | |
| cd | |
| git clone https://github.com/deis/deis.git | |
| cd deis | |
| make discovery-url | |
| vagrant plugin install vagrant-triggers | |
| vagrant up | |
| mkdir -p ~/bin | |
| cd ~/bin | |
| curl -sSL http://deis.io/deisctl/install.sh | sh -s 1.5.1 | |
| sudo ln -fs $PWD/deisctl /usr/local/bin/deisctl | |
| eval `ssh-agent -s` | |
| export DEISCTL_TUNNEL=172.17.8.100 # you may want to put this in your .bashrc file | |
| ssh-add ~/.vagrant.d/insecure_private_key | |
| deisctl list | |
| deisctl config platform set sshPrivateKey=~/.vagrant.d/insecure_private_key | |
| deisctl config platform set domain=local3.deisapp.com | |
| deisctl install platform | |
| deisctl start platform | |
| # from here, you are free to explore. use: http://docs.deis.io/en/latest/using_deis/#using-deis |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment