Scaffold project layout

This commit is contained in:
ameer
2026-05-02 02:54:34 +08:00
parent 320f1e4440
commit f5ac80a7a5
36 changed files with 183 additions and 0 deletions

18
.env.example Normal file
View File

@@ -0,0 +1,18 @@
# SQLite database path
QUIZ_DB_PATH=./quiz.db
# Required cookie signing secret
QUIZ_SECRET_KEY=change-me-to-a-random-secret
# Required shared instructor password
QUIZ_ADMIN_PASSWORD=change-me
# Uvicorn bind settings
QUIZ_HOST=127.0.0.1
QUIZ_PORT=8001
# Public URL used for student join links and QR codes
QUIZ_PUBLIC_URL=https://quiz.ahkhan.me
# Python logging level
QUIZ_LOG_LEVEL=INFO