sudo apt-get install libpq-dev
bundle install
sudo apt-get install postgresql
In a postgresql shell run the following query:
ALTER USER "postgres" WITH PASSWORD 'postgres';
In a postgresql shell run the following query:
CREATE DATABASE makerspacerepo;
run the following command in a bash shell in the same directory as Rakefile (main project directory)
rake db:setup
Fixtures are dummy instances of models for testing and development
bundle exec rake
rails s