2020-06-24 00:32:20 +02:00
|
|
|
# Project Citadel - An open source project management tool
|
|
|
|
|
|
|
|
![Citadel](https://github.com/jordanknott/project-citadel/raw/master/.github/citadel_preview.png)
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
A free & open source alternative project management tool.
|
2020-06-24 00:32:20 +02:00
|
|
|
|
|
|
|
## Features
|
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
Currently citadel only offers basic task tracking through a Kanban board.
|
2020-06-24 00:32:20 +02:00
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
Currently you can do the following to tasks:
|
2020-06-24 00:32:20 +02:00
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
- Add colors & named labels
|
|
|
|
- Add due dates
|
|
|
|
- Descriptions written in Markdown
|
|
|
|
- Assign members
|
|
|
|
- Checklists
|
|
|
|
- Mark tasks as complete
|
2020-06-24 00:32:20 +02:00
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
## Installation
|
2020-07-05 01:08:37 +02:00
|
|
|
|
2020-07-19 00:28:25 +02:00
|
|
|
### With docker & docker-compose
|
|
|
|
|
|
|
|
You'll need both [docker](https://www.docker.com/) & [docker-compose](https://docs.docker.com/compose/install/) installed.
|
|
|
|
|
|
|
|
Now do the following:
|
|
|
|
|
|
|
|
``` bash
|
2020-07-19 20:33:07 +02:00
|
|
|
docker-compose -p citadel up -d
|
|
|
|
docker-compose -p citadel -f docker-compose.yml -f docker-compose.migrate.yml run --rm migrate
|
2020-07-19 00:28:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
This will start a postgres instance as well as a citadel instance.
|
|
|
|
|
|
|
|
The second command runs the database shema migrations.
|
|
|
|
|
|
|
|
If you visit [http://localhost:3333](http://localhost:3333), you will get redirected to the installation
|
|
|
|
screen so that you can create the first system user.
|
|
|
|
|
2020-07-17 05:58:46 +02:00
|
|
|
### From Source
|
|
|
|
|
|
|
|
You'll need [Golang](https://golang.org/dl/) installed on your machine.
|
|
|
|
|
|
|
|
Next, clone the repository:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
git clone https://github.com/JordanKnott/project-citadel && cd project-citadel
|
|
|
|
```
|
|
|
|
|
|
|
|
Next we need to build the binary. This project uses [Mage](https://magefile.org/) for its build tool.
|
|
|
|
|
|
|
|
``` bash
|
2020-07-18 22:34:33 +02:00
|
|
|
go run cmd/mage/main.go install
|
2020-07-17 05:58:46 +02:00
|
|
|
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 `citadel` 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`
|
2020-07-05 01:08:37 +02:00
|
|
|
|
2020-07-19 00:28:25 +02:00
|
|
|
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 `citadel migrate`.
|
|
|
|
|
|
|
|
Now you can run the web interface by running `citadel web`
|
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
## Roadmap
|
2020-07-05 01:08:37 +02:00
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
This is a list of features that will eventually be added to Citadel in no particular order:
|
2020-07-05 01:08:37 +02:00
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
- 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
|
2020-07-05 01:08:37 +02:00
|
|
|
|
2020-07-12 09:17:53 +02:00
|
|
|
## License
|
2020-07-05 01:08:37 +02:00
|
|
|
|
2020-07-17 05:58:46 +02:00
|
|
|
[MIT License](LICENSE)
|
2020-07-05 01:08:37 +02:00
|
|
|
|