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