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
- Host: GitHub
- URL: https://github.com/rsli/recursive-todo
- Owner: RSLi
- Created: 2019-11-11T20:34:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-11T21:55:35.000Z (over 5 years ago)
- Last Synced: 2025-01-16T10:28:11.671Z (4 months ago)
- Topics: hierarchy, productivity, todo, todolist
- Language: HTML
- Homepage: https://todo.rsli.now.sh/
- Size: 127 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.



---## 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
```