Skip to content

Playing with rails 7 with hotwire and tailwindcss

Notifications You must be signed in to change notification settings

dangkhoa2016/Quote-Rails-Hotwired

 
 

Repository files navigation

README

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

About

Playing with rails 7 with hotwire and tailwindcss

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 75.5%
  • HTML 17.3%
  • JavaScript 2.9%
  • Dockerfile 2.3%
  • CSS 1.6%
  • Shell 0.4%