This project provides the backend for a personal finance web application. The development tools are listed below.
First, install the gems required by the application:
bundle
Next, execute the database migrations/schema setup:
rails db:setup
To run the server on port 3000:
rails s
Test suite is using RSpec. To run it do:
rails spec
To see test coverage, after run test suite, do:
xdg-open coverage/index.html