just about webapps Simple quizapp
- This was one of my first Django Projects
- created a basic django quiz app where a user can enter his name and play the friends quiz
- very basic minimal frontend because I concentrated more on backend
- we can play the friends quiz and we will get some points which will be put back into a table
- The project displays the table of top scorers along with name and the points squared
- creation of models in Django
- creation of forms in Django
- Django uses MTV (Model-Template-View) architecture
- we create the models which save data and then we create views and urlmappings
- the templates are created and we go to the templates which are rendered in the views
- the views are used to create urls and we use the urls to move through the app
Dockerfile has been added commands to run the docker file :
- docker image build -t quizapp .
- docker run --name quizappweb -d -p 8000:8000 quizapp