Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 676 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 676 Bytes

quiz-application

A Quiz Application made with Django and HTMX

How to install

  1. Clone the repository using the following command
git clone https://github.com/vivekthedev/quiz-application.git .
  1. Create a python virtual environment to install dependencies
python -m venv env
  1. Activate the envrionment according to your machine type:
  • (Windows) env\Scripts\activate
  • (Mac/Linux) source bin/activate
  1. Install the dependencies in virtual envrionment.
pip install -r requirements.txt
  1. Migrate Database to create tables in SQLite
python manage.py migrate
  1. Run the Django Server
python manage.py runserver