Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1010 Bytes

README.md

File metadata and controls

47 lines (29 loc) · 1010 Bytes

Cobudget API

Build Status Stories in Ready

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.

Don't push to master - feature branches and pull requests please.

How to...

Install

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

Configure

To configure database environments, edit config/database.yml.

Setup database

Setup and seed the db:

bundle exec rake db:setup

Run

Start server:

bundle exec rails s

Test

Test

bundle exec rspec