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

https://github.com/rodrigosetti/leitner

Leitner system app for flashcards learning
https://github.com/rodrigosetti/leitner

haskell leitner-method scotty

Last synced: about 1 year ago
JSON representation

Leitner system app for flashcards learning

Awesome Lists containing this project

README

          

# leitner

Web application that implements the [Leitner system](https://en.wikipedia.org/wiki/Leitner_system) for flashcards.

## Dependencies

* Haskell and Sqlite3

## Setup

1. Create the database:

```shell
sqlite3 questions.db < schema.sql
```

2. Populate the questions in the schema:

```shell
sqlite3 questions.db
sqlite> insert into questions values (...);
```

3. Start the webserver and [open the browser](http://localhost:8080/)

```
cabal run
```