Skip to content

noozo/live_view_trello_clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

live_view_trello_clone

A Phoenix LiveView Trello "clone". It contains a small subset of Trello, mostly for training and learning purposes.

Currently supports:

  • Item drag and drop
  • List drag and drop (ordering)
  • Adding boards, lists, items
  • Labelling items with coloured tags
  • Realtime updates via PubSub

Mandatory screenshot:

Screenshot

Notes:

  • It's not a full Phoenix app, but it should be easy to adapt to a new one.
  • There are some helpers (like pagination, date formatting, etc) that are not part of this codebase.

Example routing:

    scope "/todo", Todo do
      live "/boards/new", Board.CreateView
      live "/boards/:id/edit", Board.EditView, id: :id
      live "/boards/:id", Board.ShowView, id: :id
      live "/", Board.IndexView
    end

MIT Licence.

About

A Phoenix LiveView Trello "clone".

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages