nicholasjhenry / groove

A groovy open source SCRUM application utilizing the STAPLE stack (Surface, Tailwind, Ash, Phoenix, LiveView, Elixir)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Groove

A groovy open source SCRUM application utilizing the STAPLE stack:

  • Surface UI
  • Tailwind CSS
  • Ash
  • Phoenix
  • LiveView
  • Elixir

In addition to some basic SCRUM functionality, users can indicate what they are working on and every client is updated in real time; giving the app a fun sense of teamwork. Screenshot from 2023-10-09 15-38-50 Screenshot from 2023-10-09 15-41-38

Desired Feature Set

Completed

  • Account creation & login
  • Create & edit user stories
  • Users can start working on user stories
  • Users can start working on the backlog
  • Show all users currently working on front page
  • Show all users currently working on a user story
  • Show all users currently working on the backlog
  • Markdown rendering for user story description

Desired

  • Invite only
  • Sprints
  • Per user permissions (read/write user stories)
  • Show work history for user
  • Show work history for user story
  • Users can comment on work items
  • Archive work shifts by a chron job or admin action (such as after a sprint perhaps)
  • Custom work types beyond backlog & features

Setup

Interactive

Prerequisites

  • Elixir 1.14. asdf (https://asdf-vm.com/) is useful for Elixir setup and management.
  • Postgres. Example using Docker:
docker run --name pg -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -d postgres

Setup

Get the dependencies.

mix deps.get

Setup the database.

mix ash_postgres.create
mix ash_postgres.migrate

Run

iex -S mix phx.server

You will need to check the logs for the email verification link, or go to http://localhost:4000/dev/mailbox.

After verifying your email, you must complete your profile before accessing the rest of the application.

Local Cluster with Docker Compose

Prerequisites

  • Docker

Setup

mix deps.get
mix phx.gen.release
mix
echo "SECRET_KEY_BASE=$(mix phx.gen.secret)" > .env

Run

docker compose up --build

You will need to check the logs for the email verification link.

After verifying your email, you must complete your profile before accessing the rest of the application.

Credits

UI Kit

https://www.creative-tim.com/product/soft-ui-dashboard-tailwind

MIT License

Copyright (c) 2017 Creative Tim

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

About

A groovy open source SCRUM application utilizing the STAPLE stack (Surface, Tailwind, Ash, Phoenix, LiveView, Elixir)

License:MIT License


Languages

Language:Elixir 71.4%Language:JavaScript 17.2%Language:HTML 9.2%Language:Dockerfile 1.1%Language:CSS 0.8%Language:Shell 0.2%