Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kennedymwavu/todobend

A todo list backend
https://github.com/kennedymwavu/todobend

plumber r

Last synced: 24 days ago
JSON representation

A todo list backend

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# todobend

A todo list backend. Built using [plumber](https://www.rplumber.io/).

See the frontend [here](https://github.com/kennedymwavu/todofend).

## Installation

You can install the development version of todobend like so:

``` r
remotes::install_github("kennedymwavu/todobend")
```

## Environment variables

In your working directory, make sure you have a `.Renviron` file with these variables:

```r
db_name=the-sqlite-database
```

For example:

```r
db_name=todo.sqlite
```

## Run api

```r
todobend::run_api()
```