Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinboers/toboo
📝 A simple Svelte app to keep track of your GitHub issues.
https://github.com/robinboers/toboo
api github rest svelte todo webapp
Last synced: 13 days ago
JSON representation
📝 A simple Svelte app to keep track of your GitHub issues.
- Host: GitHub
- URL: https://github.com/robinboers/toboo
- Owner: RobinBoers
- Created: 2021-08-27T19:38:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-29T09:53:56.000Z (over 3 years ago)
- Last Synced: 2024-11-07T15:39:17.346Z (2 months ago)
- Topics: api, github, rest, svelte, todo, webapp
- Language: Svelte
- Homepage: https://geheimesite.nl/projects/toboo
- Size: 666 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# To-Boo
To-Boo is a simple todo app to keep track of your GitHub issues. I made it for myself to experiment with JavaScript frameworks. I use the GitHub issues as a todo list with things I want to do for specific projects. I made this so I can have a simple overview of all my todos at once. It connects via the GitHub REST API, so doesn't need a API key and stuff.
[Live demo (using my account)](https://robinboers.github.io/ToBoo/)
## Development
Clone the git repo:
```
git clone https://github.com/RobinBoers/ToBoo
```Install dependencies:
```
npm install
```Run live server to test:
```
npm run dev
```To build for production:
```
npm run build
```## Configuration
You can configure three options:
- username (the account to pull repos and issues from)
- showFinished (wether or not the closed issues should be visible by default)
- debugmode (if turned on, it will use demo data to prevent going above the API rate limit)
- showNoOpen (if turned on, it will show repositories with no open issues by default)![Screenshot](screenshot.png)