A modern quiz application built with FastAPI and Tailwind CSS.
Clone this repository or download the project
Create a virtual environment (optional but recommended):
python -m venv venv
Activate the virtual environment:
venv\Scripts\activate
source venv/bin/activate
Install the required dependencies:
pip install -r requirements.txt
Start the FastAPI server:
python main.py
Alternatively, you can use Uvicorn directly:
uvicorn main:app --reload
Open your browser and navigate to http://localhost:8000
quiz-app/
├── main.py # FastAPI application
├── requirements.txt # Project dependencies
├── static/ # Static files (CSS, JS)
│ ├── css/
│ │ └── style.css
│ └── js/
│ └── main.js
└── templates/ # Jinja2 templates
├── base.html
├── index.html
├── quiz.html
└── admin.html
MIT