Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kennedymwavu/todobend
- Owner: kennedymwavu
- License: other
- Created: 2023-08-21T17:09:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-31T19:03:13.000Z (over 1 year ago)
- Last Synced: 2024-10-28T04:59:33.995Z (2 months ago)
- Topics: plumber, r
- Language: R
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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()
```