An api built in rails meant to practice building out api CRUD functionality and making ActiveRecord queries to a database seeded from a collection of .csv's.
- Ruby 2.5.3
- Rails 6.0.3
- PostgreSQL
- RSpec for testing
- Fork & clone the repo
- Run
bundle install
and if needed,bundle update
- Run
rake data_setup:all
which will create, migrate, and seed the database with included csv files, as well as resetting the primary keys on all db tables. - Run local test suite with
bundle exec rspec