Skip to content

Commit

Permalink
Add dokku related stuff to install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jimeh committed Aug 6, 2015
1 parent 1ab068d commit 83cb6a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions install.sh
Expand Up @@ -81,6 +81,10 @@ install_virtualenv () {
curl -s https://raw.github.com/brainsik/virtualenv-burrito/master/virtualenv-burrito.sh | bash
}

install_dokku() {
git_clone 'git@github.com:progrium/dokku.git' "$TARGET/.dokku"
}


#
# Initial Setup
Expand Down Expand Up @@ -138,6 +142,9 @@ case "$1" in
virtualenv|venv)
install_virtualenv
;;
dokku)
install_dokku
;;
launch_agents|agents)
install_launch_agents
;;
Expand All @@ -157,6 +164,8 @@ case "$1" in
echo ' nvm: Install nvm, a Node.js version manager.'
echo ' virtualenv: Install virtualenv-burrito, a Python version and' \
'environment manager.'
echo ' dokku: Clone dokku to ~/.dokku enabling use of' \
'dokku_client.sh.'
echo ' launch_agents: Install launchd plists to ~/Library/LaunchAgents/'
;;
esac

0 comments on commit 83cb6a6

Please sign in to comment.