Quiz App => https://github.com/dev-au/fastapi_quiz_app

A robust and scalable quiz application built using FastAPI. This app allows users to create, take, and analyze quizzes, and is designed with modern Python practices for backend development.


Features

Getting Started

Prerequisites

Installation

Clone the repository:

git clone https://github.com/dev-au/fastapi_quiz_app.git
cd fastapi_quiz_app

Create a virtual environment and activate it:

python3 -m venv venv
source venv/bin/activate

Install the required dependencies:

pip install -r requirements.txt

Run the development server:

uvicorn app.main:app --reload