k3d3 / lodo

Layered todo list (outliner)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lodo

Join the chat at https://gitter.im/k3d3/lodo

Lodo is an application that uses a tree of lists to organize many projects and to-do lists.

The application is organized into notebooks, pages and lists. Notebooks are the top level and are displayed at the left side of the window. Pages are contained within a notebook, and within those pages are a number of lists, which can contain items or lists of their own.

The idea behind it is to store a tree of lists, each of which can be independently manipulated to add and move lists and items around the tree.

Items and lists are the same thing - an item is merely an empty list. In fact, everything is a list, including notebooks and pages. This allows you to start a deep list somewhere, and if needed, move it into its own notebook or page without any modifications.

Usage and Installation

There are two ways to run Lodo.

Packaging

If you want to simply package it into a jar:

./bin/sbt release

SBT will then optimize and compile everything into a fat jar that can be deployed anywhere Java is run:

java -jar lodo.jar

If you want to specify the running port, use the PORT environment variable:

PORT=5001 java -jar lodo.jar

Development

Alternatively, if you want to develop on Lodo:

./bin/sbt ~re-start

(if you're using zsh as a shell, you might need to use \~re-start instead of ~re-start)

This will compile the code in dev mode and run it. Any changes made to the source will make the code recompile and will restart the server. It will also compile much faster.

License

The code contained in this repository is licensed under the AGPLv3 license.

About

Layered todo list (outliner)

License:GNU Affero General Public License v3.0


Languages

Language:Scala 91.2%Language:CSS 6.8%Language:HTML 1.7%Language:Shell 0.4%