An open API service indexing awesome lists of open source software.

https://github.com/rsli/recursive-todo

A Todo list that allows you to break down tasks into arbitrarily deep hierarchies
https://github.com/rsli/recursive-todo

hierarchy productivity todo todolist

Last synced: 2 months ago
JSON representation

A Todo list that allows you to break down tasks into arbitrarily deep hierarchies

Awesome Lists containing this project

README

        

# Recursive Todo

https://todo.rsli.now.sh/

Break down your todo list items into smaller and smaller items so you can start your workflow with minimal stress!

Currently designed for desktop users. PR welcome if you can make this mobile-friendly.

![Screenshot 1](pic1.jpg)
![Screenshot 2](pic2.jpg)
![Screenshot 3](pic3.jpg)
---

## Development

### Get started

Install the dependencies...

```bash
cd svelte-app
npm install
```

...then start [Rollup](https://rollupjs.org):

```bash
npm run dev
```

Navigate to [localhost:5000](http://localhost:5000). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes.

By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the `sirv` commands in package.json to include the option `--host 0.0.0.0`.

### Deploying to the web

#### With [now](https://zeit.co/now)

Install `now` if you haven't already:

```bash
npm install -g now
```

Then, from within your project folder:

```bash
cd public
now
```

As an alternative, use the [Now desktop client](https://zeit.co/download) and simply drag the unzipped project folder to the taskbar icon.

#### With [surge](https://surge.sh/)

Install `surge` if you haven't already:

```bash
npm install -g surge
```

Then, from within your project folder:

```bash
npm run build
surge public
```