/quote_rails_hotwired

Playing with rails 7 with hotwire and tailwindcss

Primary LanguageRuby

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

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