Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 1.73 KB

README.md

File metadata and controls

92 lines (68 loc) · 1.73 KB

README

This codebase is source from hotrails.dev/turbo-rails tutorial with some adjustment like using tailwindcss instead of scss. Rspec instead of minitest.

VSCode extensions

Getting Started

bin/setup

Development

bin/dev

System test

  1. update chromium version accordingly in spec/rails_helper.rb
  2. Run bundle exec rspec

ERD

PUML
@startuml
entity Company {
 + name
}
entity User {
 + email
 + company_id
}
entity Quote {
 + name
 + company_id
}
entity LineItemDate {
 + date
 + quote_id
}
entity LineItem {
 + name
 + description
 + quantity
 + unit_price
 + line_item_date_id
}

Company ||--o{ User
Company ||--o{ Quote
Quote ||--o{ LineItemDate
LineItemDate ||--o{ LineItem
@enduml