Skip to content

olli-suoniemi/FlashCardApp

Repository files navigation

App for studying words / FlashCardApp

This app can be used for creating quizzes from your own created words. This tool is handy for teachers and students who are looking for a easy way to create flashcards out of your own words. On the current version of the app only the admin has the control of creating new words and deleting them. Later though the ability may be allowed for all.

The main reason this app was built was the need for a tool to learn new languages. My aim is to use this in my Russian studies to help me learn new words and phrases. This is a traditional stylish "flashcard" app which can be used for basic word quizzing.

The second reason for this app, was to develop and improve web development skills. I built this as a late-summer-project on a summer break from university in 2021.


The app can be tested online in here


Local testing

Use the db commands below to create the needed tables to run the program. Then create a .env file and insert your database url into a DATABASE_URL variable.

In order to run the program locally you have to install Deno. Installation guidelines for Deno.


In order to run the app locally run this command in the root of the application: deno run --unstable --allow-all --watch run-locally.js


CREATE TABLE users ( id SERIAL PRIMARY KEY, username VARCHAR(255) UNIQUE, password CHAR(60) );

CREATE TABLE words( id SERIAL PRIMARY KEY, word TEXT NOT NULL, lang TEXT NOT NULL );

CREATE TABLE answers ( id SERIAL PRIMARY KEY, word_id INTEGER REFERENCES words(id), answer TEXT NOT NULL, lang TEXT NOT NULL );

CREATE TABLE roles ( id SERIAL PRIMARY KEY, name VARCHAR(20) NOT NULL );

CREATE TABLE user_roles ( role_id INTEGER REFERENCES roles(id), user_id INTEGER REFERENCES users(id) );

INSERT INTO roles (name) VALUES ('ADMIN');

INSERT INTO user_roles (role_id, user_id) VALUES( (SELECT id FROM roles WHERE name = 'ADMIN'), (SELECT id FROM users WHERE username = 'admin') );

CREATE UNIQUE INDEX ON users((lower(username)));

About

App for learning words and phrases in Russian language.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published