Skip to content
forked from seb3s/kandesk

Simple Kanban application written in elixir using phoenix liveview

License

Notifications You must be signed in to change notification settings

ondrej-tucek/kandesk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kandesk

Kandesk board

To start your Phoenix server:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.setup
  • Install Node.js dependencies with cd assets && npm install
  • Start Phoenix endpoint with mix phx.server

Create a first admin user

To be able to connect to the application, a first admin user must be created. This is done by running:

mix run priv/repo/seeds.exs

Then you can connect with "[email protected]" as Email and "admin" as Password. Then you will be able to change everything from within the application, password included ;-)

Access the application

Now you can visit localhost:4001 from your browser.

Ready to run in production? Please check our deployment guides.

Features set

Boards:

  • create / update / delete
  • sharable among users with fine grain access control (edit_board?, delete_board?, create_column?, edit_column?, delete_column?, move_column?, create_task?, edit_task?, delete_task?, move_task?, admin_tags?, assoc_tags?)
  • export board content to pseudo xml data

Columns:

  • create / update / delete
  • visibility: a column can be made visible to its creator only
  • columns are sortable via drag & drop
  • duplicate column
  • ability to move a column to another board
  • export column content to pseudo xml data
  • realtime updating among users viewing the same board

Cards:

  • create / update / delete
  • cards are sortable via drag & drop within and between columns
  • tags association
  • realtime updating among users viewing the same board

Tags:

  • create / update
  • two display modes: large with text or small without
  • new tags can be added
  • tags are sortable to control the order in which they appear on cards
  • realtime updating among users viewing the same board

Account page:

  • basic page to maintain your personal data (currently names & password)

Admin area:

  • manage users : basic admin panel to be able to create / update / delete users

Learn more about elixir, phoenix & liveview

About

Simple Kanban application written in elixir using phoenix liveview

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Elixir 70.1%
  • CSS 11.3%
  • JavaScript 9.6%
  • PLpgSQL 5.3%
  • HTML 3.2%
  • DIGITAL Command Language 0.5%