Initial clean state

This commit is contained in:
RandyJC
2025-12-09 08:55:01 +01:00
commit 497dd2ea4c
115 changed files with 12391 additions and 0 deletions

37
config/quizz/example.json Normal file
View File

@@ -0,0 +1,37 @@
{
"subject": "Example Quizz",
"questions": [
{
"question": "Which soundtrack is this?",
"answers": [
"Nature sounds",
"Piano solo",
"Electronic beat",
"Chill guitar"
],
"media": {
"type": "audio",
"url": "https://file-examples.com/storage/fee95f49ad692e9489b0fab/2017/11/file_example_WAV_1MG.wav"
},
"solution": 1,
"cooldown": 5,
"time": 25
},
{
"question": "Which landmark appears in this clip?",
"answers": [
"Eiffel Tower",
"Sydney Opera House",
"Statue of Liberty",
"Golden Gate Bridge"
],
"media": {
"type": "youtube",
"url": "https://www.youtube.com/watch?v=jNQXAC9IVRw"
},
"solution": 3,
"cooldown": 5,
"time": 60
}
]
}