https://github.com/ryu1kn/done-map
https://github.com/ryu1kn/done-map
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryu1kn/done-map
- Owner: ryu1kn
- Created: 2016-03-21T11:30:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T21:40:31.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T14:06:06.296Z (4 months ago)
- Language: JavaScript
- Size: 1.31 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# done-map
A web app to keep track of which part you've done on something.
For example, you can record which pages/chapters you've read in a book.## Prerequisite
- bundler
## Install & Use
```sh
$ bundle install
$ rake start
```Open `localhost:3000` with your browser.
## APIs
* `GET /topics`
* Returns all topic information
* `PUT /topic`
```
{
"title": "TITLE",
"total": 240
}
```
* Create one topic
* `POST /topic/{topic_id}/bands`
```
[
{"begin": 10, "end": 20},
{"begin": 50, "end": 55},
...
]
```
* Register one or more bands to a specific topic