Trello Burndown alternatives and similar software solutions
Based on the "Misc/Other" category.
Alternatively, view Trello Burndown alternatives based on common mentions on social networks and blogs.
-
CyberChef
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis -
Monica
Personal CRM. Remember everything about your friends, family and business relationships. -
MindsDB
A low-code Machine Learning platform to help developers build #AI solutions -
snipe-it
A free open source IT asset/license management system -
google-webfonts-helper
A Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets -
CapRover
Scalable PaaS (automated Docker+nginx) - aka Heroku on Steroids -
changedetection.io
The best and simplest self-hosted free open source website change detection, monitor and notification service. Restock Monitor, change detection. Designed for simplicity - the main goal is to simply monitor which websites had a text change for free. Free Open source web page change detection, Restock Monitoring, Visualping and Apify alternative -
blynk
Blynk is an Internet of Things Platform aimed to simplify building mobile and web applications for the Internet of Things. Easily connect 400+ hardware models like Arduino, ESP8266, ESP32, Raspberry Pi and similar MCUs and drag-n-drop IOT mobile apps for iOS and Android in 5 minutes -
Reactive Resume
A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today! [Moved to: https://github.com/AmruthPillai/Reactive-Resume] -
Ombi
Want a Movie or TV Show on Plex or Emby? Use Ombi! [Moved to: https://github.com/Ombi-app/Ombi] -
Revive Adserver
The world's most popular free, open source ad serving system. You can download the latest release at: -
cState
馃敟 Open source static (serverless) status page. Uses hyperfast Go & Hugo, minimal HTML/CSS/JS, customizable, outstanding browser support (IE8+), preloaded CMS, read-only API, badges & more. -
COPS
Calibre OPDS (and HTML) PHP Server : web-based light alternative to Calibre content server / Calibre2OPDS to serve ebooks (epub, mobi, pdf, ...) -
ytdl-webserver
馃摶 Webserver for downloading youtube videos. Ready for docker. -
Kimai
Kimai v1 open source time-tracking - please switch to Kimai v2 -
oTranscribe
A free & open tool for transcribing audio interviews -
Ulterius
Ulterius is an open-source remote desktop software with lots of awesome functions. -
EasyBook Project
Book publishing as easy as it should be (built with Symfony components) -
How Secure Is My Password
Rather than just saying a password is "weak" or "strong", How Secure is My Password? lets your users know how long it would take someone to crack their password. -
2FAuth
A Web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes -
Para
Multitenant backend server for building web and mobile apps rapidly. The backend for busy developers. (self-hosted or hosted) -
Skygear
Skygear - an open source serverless platform for modern secure app development -
DomainMOD
DomainMOD is an open source application written in PHP & MySQL used to manage your domains and other internet assets in a central location. DomainMOD also includes a Data Warehouse framework that allows you to import your web server data so that you can view, export, and report on your live data. -
visualCaptcha
visualCaptcha's Main Repo. This is a collection of all the different versions/repos of visualCaptcha. -
GeneWeb
GeneWeb is a free (as in free speech) genealogy software with a web interface created by Daniel de Rauglaudre. -
MalwareMultiScan
Self-hosted VirusTotal / MetaDefender wannabe with API, demo UI and Scanners running in Docker. -
Notica
Send browser notifications from your terminal. No installation. No registration. -
Anchr
鈿擄笍 Anchr provides you with a toolbox for tiny tasks on the internet, especially bookmark collections -
AlertHub
AlertHub is a simple tool written with NodeJS to get alerted from new GitHub and GitLab repository events. -
Digital-Currency
Create your own Digital Currency with this self-hosted Web App. Check out the Demo website -
Web fonts repository
A simple webfont hosting. Google Fonts alternative for your own fonts. -
Musical Artifacts
Helping to catalog, preserve and free the artifacts you need to produce music. -
CrushPaper
Research the web for relevant sources, save them to CrushPaper and then combine them with your own insights into an article. -
PassCheck
A web application featuring some handy password tools
Static code analysis for 29 languages.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Trello Burndown or a related project?
README
trello-burndown
An easy to use SCRUM burndown chart for Trello boards.
Getting started
Get quickly up and runnning with the docker image or binary.
Or compile the binary or docker image from source.
How it works
- The points must be present in the title between parenthesis like so:
(2) Add login page
- The last column of the board is where finished cards are found.
- Weekends are ignored. Points that were completed in the weekend are appointed to the next monday.
Screenshots
Viewing a burndown chart
[view](screenshots/view.png)
Adding a trello board
[add](screenshots/add.png)
Index page with table of trello boards
[index](screenshots/index.png)
Installation
Obtain trello tokens
- Login to trello
- Generate a Developer API key
- Generate a token by visiting the following URL:
https://trello.com/1/authorize?name=trello-burndown&expiration=never&response_type=token&key=DEVELOPER_API_KEY
. Replace "DEVELOPER_API_KEY" with the key you generated in the previous step. - Write both the Developer API key and the generated token down, you will need these to configure the application.
Docker: Setup & Running
Create a new directory to store the configuration and SQLite3 database.
位 mkdir trello-burndown && cd trello-burndown
Create a file named
config.yaml
in the same directory, copy the contents from the default here.Edit the configuration file with your favorite editor and set the developer api key and generated token you wrote down earlier.
Run it! (Check docker hub for available versions)
位 docker run -d -p 8080:8080 --volume $(pwd):/root:Z swordbeta/trello-burndown:latest
Note 1: The config file must be present in the /root directory inside the docker container.
Note 2:
:Z
is required on systems with SELinux set to enforcing.
Binary: Setup & Running
- Download the latest release from here.
- Create a file named
config.yaml
in the same directory, copy the contents from the default here. - Edit the configuration file with your favorite editor and set the developer api key and generated token you wrote down earlier.
Run it! You could run this as a daemon with upstart/supervisord/systemd/etc.
位 ./trello-burndown
Compile from source
First clone the repository:
位 git clone https://github.com/mtricht/trello-burndown.git
位 cd trello-burndown
To build the docker image:
位 make docker
Or a binary targeting linux/amd64:
位 make build