Web application that implements the Leitner system for flashcards.
- Haskell and Sqlite3
- Create the database:
sqlite3 questions.db < schema.sql- Populate the questions in the schema:
sqlite3 questions.db
sqlite> insert into questions values (...);- Start the webserver and open the browser
cabal run