-
Install Postgres
-
For debian based linux distros this should be:
sudo apt-get install postgresql postgresql-contrib libpq-dev
-
-
Install RVM
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 \curl -sSL https://get.rvm.io | bash -s stable --rails
-
Install bundler
gem install bundler
-
Clone this repo and run bundler
git clone [email protected]:collaborations/capstone.git cd capstone bundle
-
Configure settings
- Create
config/settings/database.yml
based onconfig/settings/database.example.yml
and fill in db config - Set
secret_key_base
for development inconfig/secrets.yml
- Obtain tokens for
config/settings.yml
from Gino
- Create
-
Create and seed databases
rake db:create rake db:migrate rake db:seed
TODO. Talk to Gino.