Comments
- "Your program should also accept a “Bill me on” date and a dollar amount."
- Not sure if the requirement is to implement a background work that would process the transaction on the bill me on date.
- "Write an audit function to show payouts and transactions that make up a given payout."
- A given payout it made up of transactions but not other payouts.
- Bundle
bundle install
- Yarn
- node version 14 was used
yarn install
- Create database, migrate and seed
rails db:create
rails db:migrate
rails db:seed
rails server
- Seed database
rails db:test:prepare
rails db:seed RAILS_ENV=test
- run test
rspec