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
- Host: GitHub
- URL: https://github.com/rodrigosetti/leitner
- Owner: rodrigosetti
- Created: 2022-11-29T00:49:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-29T00:49:40.000Z (over 3 years ago)
- Last Synced: 2025-02-08T20:47:38.797Z (over 1 year ago)
- Topics: haskell, leitner-method, scotty
- Language: Haskell
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```