Last active
June 26, 2017 12:46
-
-
Save airbornelamb/fc94de9edaa3de123f4961765929a945 to your computer and use it in GitHub Desktop.
Setup and install kanban-list server
This file contains 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 | |
# 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