Skip to content

Instantly share code, notes, and snippets.

@airbornelamb
Last active June 26, 2017 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airbornelamb/fc94de9edaa3de123f4961765929a945 to your computer and use it in GitHub Desktop.
Save airbornelamb/fc94de9edaa3de123f4961765929a945 to your computer and use it in GitHub Desktop.
Setup and install kanban-list server
#!/bin/bash
# This script installs the kanban-list application created by https://github.com/volpe28v/kanban-list
whoitis=$(whoami)
# Install RVM
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -sSL https://get.rvm.io -o rvm.sh
chmod +x rvm.sh
./rvm.sh stable
source /home/$whoitis/.rvm/scripts/rvm
rvm install 2.1.2
# Install kanban-list
sudo apt update
sudo apt install git libpq-dev g++
git clone https://github.com/volpe28v/kanban-list.git
cd kanban-list/
bundle
rake db:migrate
rails s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment