Flash-Cards is a project made by Yassa Taiseer that is used to help make quick questions and answers
- Users signup/login
- They can then make flash cards which can be later deleted
- Helps with studying
- GoLang(backend)
- VanillaJs(frontend animations)
- Html&CSS(frontend)
- MySQL(Backend)
Flash-Cards requires the MySql download here It also requires the installation of Golang 1.15+
go run main.go
DlvrMe runs on a MySQL databases
There is a need for two tables Users and Cards
Name the database flashcarddb
on 3306
Port
The user's table will look like this:
VALUE | TYPE |
---|---|
Username | VARCHAR |
Password | VARCHAR |
ID_key | AUTO_INCREMENT_KEY |
VALUE | TYPE |
---|---|
Username | VARCHAR |
Question | VARCHAR |
Answer | VARCHAR |
ID_key | AUTO_INCREMENT_KEY |