An open source project management tool with Kanban boards
Go to file
2020-08-06 20:50:35 -05:00
.github chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
cmd chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
conf chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
data arch: move web folder into api & move api to top level 2020-07-04 18:08:37 -05:00
frontend chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
internal chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
migrations feature: add first time install process 2020-07-16 19:40:23 -05:00
templates/mail/user arch: move web folder into api & move api to top level 2020-07-04 18:08:37 -05:00
uploads change: add .keep to .gitignore exclusion list 2020-07-04 18:14:05 -05:00
.dockerignore feature: add Dockerfile & docker-compose installation instructions 2020-07-18 17:28:25 -05:00
.gitignore feat: embed schema migrations in binary 2020-07-19 16:10:07 -05:00
.tmuxinator.yml fix: update tmuxinator script with new api command 2020-07-17 19:39:18 -05:00
docker-compose.dev.yml chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
docker-compose.migrate.yml chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
docker-compose.yml chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
Dockerfile chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
go.mod chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
go.sum chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
gqlgen.yml chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
LICENSE change: add LICENSE & basic compile instructions 2020-07-16 23:00:03 -05:00
magefile.go chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
README.md chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
sqlc.yaml arch: move web folder into api & move api to top level 2020-07-04 18:08:37 -05:00

Taskcafe

Overview

Taskcafe

A free & open source alternative project management tool.

Please note that this project is still in active development. Some options may not work yet!

Features

Currently Taskcafe only offers basic task tracking through a Kanban board.

Currently you can do the following to tasks:

  • Add colors & named labels
  • Add due dates
  • Descriptions written in Markdown
  • Assign members
  • Checklists
  • Mark tasks as complete

Installation

With docker & docker-compose

You'll need both docker & docker-compose installed.

First clone the repository:

git clone https://github.com/JordanKnott/taskcafe && cd taskcafe

Now do the following:

docker-compose -p taskcafe up -d
docker-compose -p taskcafe -f docker-compose.yml -f docker-compose.migrate.yml run --rm migrate

This will start a postgres instance as well as a taskcafe instance.

The second command runs the database schema migrations.

If you visit http://localhost:3333, you will get redirected to the installation screen so that you can create the first system user.

From Source

You'll need Golang installed on your machine.

Next, clone the repository:

git clone https://github.com/JordanKnott/taskcafe && cd taskcafe

Next we need to build the binary. This project uses Mage for its build tool.

go run cmd/mage/main.go install
go run cmd/mage/main.go build

This will:

  • Install all yarn packages for the frontend
  • Build the React frontend
  • Embed the React frontend in the binary
  • Compile the final exectuable binary

The newly created taskcafe binary can be found in the dist folder.

It contains everything neccessary to run except the config file. An example config file can be found in conf/app.example.toml

The config will need to be copied to a conf/app.toml in the same place the binary is.

Make sure to fill out the database section of the config in order to connect it to your database.

Then run the database migrations with taskcafe migrate.

Now you can run the web interface by running taskcafe web

Roadmap

This is a list of features that will eventually be added to Taskcafe in no particular order:

  • Add a calender tab overview of task due dates
  • Add lists tab overview of tasks (alternative view to Kanban )
  • Add gantt timeline view (with swimlanes)
  • Implemention list actions (copy, mass delete, etc)
  • Task sorting, filtering, and search
  • Custom fields
  • Automation rules
  • Wiki tab
  • Progress tab
  • Archive tasks, then option to delete instead of only being able to delete tasks
  • Keyboard shortcuts
  • Custom project backgrounds
  • Custom project colors
  • Portfolio view

License

MIT License