Skip to content

siddhantrao23/flashy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flashy

A Flashcard Application made using Django

This project is hosted on Heroku and can be found here

Install

git clone https://github.com/siddhantrao23/flashy.git
cd flashy
pip3 install -r requirements.txt

Run

$ python3 manage.py makemigrations
$ python3 manage.py migrate
$ python3 manage.py runserver #to start up the server

Navigate to localhost:8000/cards to see the application in the browser

Endpoints

  • /: Homepage
  • /set_index/<set_id>: Index page for a particular set
  • /new_set: Form for creating a new set
  • /new_card/<int:set_id>: Form for creating new Card in a set
  • /<int:set_id>/<int:card_id>: Practice the flashcard set
  • /del_set: Delete a flashcard set
  • /del_card/<int:set_id>: Delete a card from a particular set