🎯 Smart MCQ Platform: LLM-powered question generation with Hindi/English support via FastAPI
230
AI-powered Multiple Choice Question platform built with FastAPI for automated test creation and student assessment.
# Pull and run the latest image
docker pull prabhat9801/fastapi_mcq_platform:latest
docker run -p 8000:8000 prabhat9801/fastapi_mcq_platform:latest
# Access the application
# API Documentation: http://localhost:8000/docs
# Admin Panel: http://localhost:8000/admin
# Health Check: http://localhost:8000/health
docker run -p 8000:8000 \
-e GOOGLE_API_KEY="your-api-key" \
-e SECRET_KEY="your-secret-key" \
-e DATABASE_URL="sqlite:///./mcq_platform.db" \
prabhat9801/fastapi_mcq_platform:latest
/docs/healthversion: '3.8'
services:
app:
image: prabhat9801/fastapi_mcq_platform:latest
ports:
- "8000:8000"
environment:
- SECRET_KEY=your-secret-key
- GOOGLE_API_KEY=your-api-key
- DATABASE_URL=sqlite:///./data/mcq_platform.db
volumes:
- ./data:/app/data
restart: unless-stopped
Suitable for cloud deployment on:
Tags: fastapi python ai education mcq llm docker api langchain chromadb
Content type
Image
Digest
sha256:546c5ca9a…
Size
5.4 GB
Last updated
11 months ago
docker pull prabhat9801/fastapi_mcq_platform