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
- Ruby LSP
- solargraph
- ruby-rubocop-revived
- Ruby Around the Block
- Tailwind CSS Intellisense
- Rails
- endwise
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