Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiswa/TaskBoard
A Kanban-inspired app for keeping track of things that need to get done. (Don't forget to read the Wiki page!)
https://github.com/kiswa/TaskBoard
kanban markdown task-board task-manager
Last synced: 13 days ago
JSON representation
A Kanban-inspired app for keeping track of things that need to get done. (Don't forget to read the Wiki page!)
- Host: GitHub
- URL: https://github.com/kiswa/TaskBoard
- Owner: kiswa
- License: mit
- Created: 2014-10-07T16:01:42.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-11-29T16:24:03.000Z (almost 3 years ago)
- Last Synced: 2024-04-13T23:54:36.041Z (7 months ago)
- Topics: kanban, markdown, task-board, task-manager
- Language: TypeScript
- Homepage: http://taskboard.matthewross.me
- Size: 15 MB
- Stars: 1,356
- Watchers: 102
- Forks: 303
- Open Issues: 59
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - kiswa/TaskBoard - A Kanban-inspired app for keeping track of things that need to get done. (Don't forget to read the Wiki page!) (markdown)
- awesome-homelab - TaskBoard - inspired app for keeping track of things that need to get done. (Don't forget to read the Wiki page!) | (Apps / X)
README
# MAINTAINERS WANTED
I haven't had time to work on TaskBoard for several months now, and rather than let it fall to the wayside I'd like to bring in some maintainers. If you're interested, create an issue.# TaskBoard
[![Build Status](https://travis-ci.org/kiswa/TaskBoard.svg)](https://travis-ci.org/kiswa/TaskBoard) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/77952f4ac9b44e9fbebe7758442d356d)](https://www.codacy.com/app/kiswa-com/TaskBoard?utm_source=github.com&utm_medium=referral&utm_content=kiswa/TaskBoard&utm_campaign=Badge_Grade) [![Join the chat at https://gitter.im/kiswa/TaskBoard](https://badges.gitter.im/kiswa/TaskBoard.svg)](https://gitter.im/kiswa/TaskBoard?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Join the discussion at https://reddit.com/r/TaskBoard](https://cdn.rawgit.com/kiswa/TaskBoard/09444718053f7405636ab2205ad0f12413df7a20/reddit.svg)](https://reddit.com/r/TaskBoard)
A [Kanban](http://en.wikipedia.org/wiki/Kanban_board)-inspired app for keeping
track of things that need to get done.The goal of TaskBoard is to provide a simple and clean interface to a
functional and minimal application for keeping track of tasks.
**It's not trying to be the next Trello or LeanKit.**## Installation
### Prerequisites
A web server running PHP 7.x with sqlite enabled (it may work on PHP 5.6, but
is not supported). See [PHP Supported Versions](https://www.php.net/supported-versions.php).The server must have `sqlite3` and `php7-sqlite` installed.
**- OR -**
If you're comfortable changing code, you can use any database [supported by RedBeanPHP](https://redbeanphp.com/index.php?p=/connection).#### Using PHP-FPM
You are able to use PHP-FPM if you remove (or comment out) the php_value items in the api/.htaccess file, then set them in a `.user.ini` [See Documentation](https://www.php.net/manual/en/configuration.file.per-user.php)### Install
Installing TaskBoard is as easy as 1, 2, 3!
1. Download [the latest release](https://github.com/kiswa/TaskBoard/releases) since v1.0.0
2. Extract it to your webserver
3. Verify the `api` directory is writableIf you intend to use email features, you will need to edit `api/helpers/mailer.php`.
### Server Config
#### Apache
The directory you create for TaskBoard must have `AllowOverride` set so the
`.htaccess` files work.You also have to have `mod_rewrite` installed and enabled.
#### NGINX
TODO
#### IIS
See the [Wiki Page](https://github.com/kiswa/TaskBoard/wiki/TaskBoard-on-IIS)
### First Use
Open a web browser to the location you installed TaskBoard and use `admin` as
the username and password to log into TaskBoard.Go to the `Settings` page to update your user (username, email, password,
*etc.*) and create your first board!## Features
### Users & Settings
There are three types of users, and the settings page is slightly different
for each.* User - View boards assigned to them and update their own settings and options.
* Board Admin - Same as above, with the ability to manage boards they are
added to.
* Admin - Same as above, with the ability to add/remove users and boards.![Settings Page](./.github/settings.png)
### Boards
Each board may have as many columns as needed. For example, a software project
might have columns like:* Proposed
* Backlog
* In Work
* Test
* Done
* ArchivedOr maybe you want to track a simple todo list with just:
* Todo
* Doing
* DoneIt's all up to you! However many columns you have, each column may have tasks
added to it, and tasks can be dragged to other columns as they progress
(or edited and assigned to a new column).Boards may also have categories for additional organization, *e.g.* `Bug`,
`Enhancement`, `New Feature`.![Boards Page](./.github/boards.png)
### Tasks
A task only has to have a Title to be added to a board, but there is much more
available. Tasks may be assigned to any user on the board (or left Unassigned),
and include options for Due Date, Color, Points (an optional difficulty
rating), and Category.TaskBoard uses a [Markdown](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#table-of-contents)
parser for the Description, allowing for better display of details
(like this readme).Once a task has been entered, it may have Comments (also supporting Markdown)
or Attachments added to it by viewing the task detail. There is a link to edit
the task, which takes you to a modal much like the original add task dialog.For admin users, there is also a link to delete the task. This view also shows
the task's activity log on the side of the screen, displaying the complete
history of events related to the task.![Tasks](./.github/tasks.png)
## Development
Developing on TaskBoard is pretty simple too.
1. Clone the repository and navigate to it `git clone https://github.com/kiswa/TaskBoard && cd TaskBoard/`
2. Run `git checkout dev` to work on the `dev` branch
3. If you don't have it already, install the Angular CLI globally with `npm i -g @angular/cli`
4. Run `npm i` to install dependencies (this also installs the API dependencies)
5. Run `npm run watch` for the build to automatically run after any change### Unit Tests
Both the API and App are unit tested. To run all tests, use the command
`npm run test`. For only one set, run `npm run test:api` or `npm run test:app`.To have the app tests run & update as you work, use the command
`npm run test:watch`.If you want to run a single API test, add the following comment block before
the test function and use the command `npm run test:api-single`.``` php
/**
* @group single
*/
```If you want to run a single App test, change the test from
`it('should do something', ...);` to `fit('should do something', ...);` and
only that test will run.These tests are run by [Travis CI](https://travis-ci.org/) on PRs and commits.
A PR with failing or missing tests will not be merged.## Contributing
Fork the repository and make your changes on the `dev` branch.
Create a pull request against the `dev` branch to merge your changes with the
main repository.Make sure to include/update unit tests.
## Feedback
Constructive feedback is appreciated! If you have ideas for improvement, please
[add an issue](https://github.com/kiswa/TaskBoard/issues) or implement it and
submit a pull request.If you find a bug, please post it on the [Issue Tracker](https://github.com/kiswa/TaskBoard/issues).
## How It's Made
### Front End
* [Angular](https://angular.io/) single-page app (not AngularJS)
* [Bourbon](http://bourbon.io/) and [Neat](http://neat.bourbon.io/) SCSS
library & grid
* [scss-base](https://www.npmjs.com/package/scss-base) for the base styling
* [marked](https://github.com/chjj/marked) Markdown parser
* [Chartist.js](https://gionkunz.github.io/chartist-js/) for all charts### Back End
* [Slim Framework](http://www.slimframework.com/) and
[RedBeanPHP](http://www.redbeanphp.com/) for a RESTful API
* [PHPMailer](https://github.com/PHPMailer/PHPMailer) for sending emails
* [JWT](https://jwt.io/) authentication
* [SQLite](https://www.sqlite.org/) database## Lines of Code
Because I like seeing the numbers.
### `src`
Language | Files | Blank | Comment | Code
-----------|--------:|---------:|---------:|---------:
TypeScript | 67 | 977 | 129 | 4103
PHP | 20 | 744 | 37 | 2243
HTML | 21 | 268 | 2 | 1572
SASS | 14 | 299 | 10 | 1347
**SUM:** | **122** | **2288** | **178** | **9265**Command: `cloc --exclude-dir=vendor,favicons --exclude-ext=json,svg,ini src/`
### `test`
Language | Files | Blank | Comment | Code
-----------|-------:|---------:|---------:|---------:
TypeScript | 38 | 1017 | 8 | 3540
PHP | 11 | 784 | 19 | 2272
**SUM:** | **49** | **1801** | **27** | **5812**Command: `cloc --exclude-ext=xml test/`