Cobudget is a web app helping people collaborate on budgets. For more about the project as a whole, check out the top-level repo. This repo is the backend API of Cobudget.
Install ruby and gem: https://www.ruby-lang.org/en/installation/
git clone https://github.com/open-app/cobudget-api
cd cobudget-api
bundle install
To configure database environments, edit config/database.yml
.
Setup and seed the db:
bundle exec rake db:setup
Start server:
bundle exec rails s
Test
bundle exec rspec