An open source project management tool with Kanban boards
Go to file
2022-09-02 12:05:43 -05:00
.github docs: update contributing & redirect feature request to discussions 2020-12-24 20:18:20 -06:00
cmd feat: add pre-commit hooks & refactor code to pass linting 2020-08-20 18:37:36 -05:00
conf feat: smtp server for sending email can now be set by config 2020-12-23 16:44:13 -06:00
frontend fix: frontend not being built due to lint errors 2022-09-02 12:05:20 -05:00
internal fix: add clarification to arguments for reset-password cmd 2022-09-02 12:05:43 -05:00
migrations feat!: due date reminder notifications 2021-11-17 17:11:28 -06:00
scripts fix: member permissions now works correctly 2020-09-19 17:26:02 -05:00
templates/mail/user arch: move web folder into api & move api to top level 2020-07-04 18:08:37 -05:00
testing refactor: add docker testing targets to magefile 2021-09-13 11:23:09 -05:00
uploads change: add .keep to .gitignore exclusion list 2020-07-04 18:14:05 -05:00
.cz.toml feat: add pre-commit hooks & refactor code to pass linting 2020-08-20 18:37:36 -05:00
.dockerignore chore: update docker & git ignore files 2020-08-12 22:30:53 -05:00
.gitignore chore: update docker & git ignore files 2020-08-12 22:30:53 -05:00
.pre-commit-config.yaml chore: switch eslint to lint changed files intead of whole project 2020-09-10 22:35:16 -05:00
.tmuxinator.yml feat!: due date reminder notifications 2021-11-17 17:11:28 -06:00
CHANGELOG.md docs: update changelog 2021-10-24 10:51:03 -05:00
CODE_OF_CONDUCT.md docs: add CODE_OF_CONDUCT.md 2020-08-12 15:27:07 -05:00
CONTRIBUTING.md docs: update contributing & redirect feature request to discussions 2020-12-24 20:18:20 -06:00
docker-compose.dev.yml feat!: due date reminder notifications 2021-11-17 17:11:28 -06:00
docker-compose.migrate.yml chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
docker-compose.yml fix(docker-compose): add volume for uploads 2021-10-06 19:09:36 -05:00
Dockerfile fix(Dockerfile): remove config file from being added 2020-08-14 12:35:56 -05:00
go.mod feat!: due date reminder notifications 2021-11-17 17:11:28 -06:00
go.sum refactor: replace refresh & access token with auth token only 2021-04-28 21:38:49 -05:00
gqlgen.yml refactor: split resolver into multiple files based on domain 2021-10-25 17:42:57 -05:00
LICENSE change: add LICENSE & basic compile instructions 2020-07-16 23:00:03 -05:00
magefile.go refactor(magefile): update schema generator to use 0644 file permissions 2021-10-26 14:42:04 -05:00
Pipfile chore(Pipfile): update python version 2021-04-28 21:38:49 -05:00
Pipfile.lock chore(Pipfile): update python version 2021-04-28 21:38:49 -05:00
README.md docs(README): update readme feature list & heading 2021-01-04 16:24:36 -06:00
sqlc.yaml feat: add pre-commit hooks & refactor code to pass linting 2020-08-20 18:37:36 -05:00

Taskcafe logo

Discord Releases Dockerhub Go Report Card Docker pulls

Report Bug · Request Feature · Ask a Question

Was this project useful? Please consider donating to help me improve it!

This project is still in alpha development

Taskcafe

Features

The following features have been implemented:

  • Manage tasks through a Kanban board interface (set due dates, labels, add checklists)
  • View all your current assigned tasks through the My Tasks view
  • Personal projects
  • Task comments and activity

This project is still in active development, so some options may not be fully implemented yet.

For updates on development, join the Discord server.

For a list of planned features, check out the Roadmap!

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

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.

For more information on configuration, please read the wiki. 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.

A more detailed guide for installing on Ubuntu/Debian

How is this different from X (Trello, NextCloud, etc)?

One of the primary goals of Taskcafe is to provide a project management tool that I personally enjoy using for my own projects and fits my workflow.

During alpha development, the current plan is to build the "basic" features - features that are pretty much standard across all kanban boards / project management tools.

Once Taskcafe is out of alpha, there are many features that I plan on adding that will differentiate it from other products (check out the Roadmap for ideas on future plans).

Contributing & community

If you have questions regarding how to use Taskcafe, check out the discord server.

If you're interesting in contributing to Taskcafe, please read the contribution guide first!

There is also a Code of Conduct as well.

License

MIT License