feat: refactor to SI Quiz with Space Invaders arcade interface

- Updated Dockerfile to Python 3.11, selective COPY for cleaner image
- Expanded .gitignore with Python/OS patterns
- Added config.json, questions.json, env_example, and static assets
- Updated templates (host, player, scores) with Space Invaders UI
- Rewrote README for SI Quiz branding and setup docs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-09 01:45:04 +00:00
co-authored by Claude Sonnet 4.6
parent d8f4cc97c6
commit 3539b1f75f
13 changed files with 451 additions and 408 deletions
+62
View File
@@ -0,0 +1,62 @@
[
{
"q": "¿Cuántos huesos tiene el cuerpo humano adulto?\n\n[EN] How many bones does the adult human body have?",
"options": [
"206 / 206",
"185 / 185",
"230 / 230",
"172 / 172"
],
"correct": 0,
"fun_fact": "Al nacer tenemos ~270 huesos. Con el tiempo, muchos se fusionan hasta llegar a 206 en la adultez. / We're born with ~270 bones. Over time, many fuse together until we reach 206 in adulthood.",
"group": "general"
},
{
"q": "¿Qué país tiene más volcanes activos en el mundo?\n\n[EN] Which country has the most active volcanoes in the world?",
"options": [
"Japón / Japan",
"Indonesia / Indonesia",
"Estados Unidos / United States",
"México / Mexico"
],
"correct": 1,
"fun_fact": "Indonesia tiene más de 130 volcanes activos, ubicados en el 'Anillo de Fuego' del Pacífico. / Indonesia has over 130 active volcanoes, located in the Pacific 'Ring of Fire'.",
"group": "general"
},
{
"q": "¿Qué planeta del sistema solar tiene más lunas conocidas?\n\n[EN] Which planet in the solar system has the most known moons?",
"options": [
"Júpiter / Jupiter",
"Neptuno / Neptune",
"Saturno / Saturn",
"Urano / Uranus"
],
"correct": 2,
"fun_fact": "Saturno lidera con 146 lunas confirmadas, superando a Júpiter en 2023. ¡El récord sigue cambiando! / Saturn leads with 146 confirmed moons, surpassing Jupiter in 2023. The record keeps changing!",
"group": "general"
},
{
"q": "¿En qué año fue fundada la empresa Apple?\n\n[EN] In what year was Apple founded?",
"options": [
"1980 / 1980",
"1972 / 1972",
"1984 / 1984",
"1976 / 1976"
],
"correct": 3,
"fun_fact": "Apple fue fundada el 1 de abril de 1976 por Steve Jobs, Steve Wozniak y Ronald Wayne. / Apple was founded on April 1, 1976 by Steve Jobs, Steve Wozniak, and Ronald Wayne.",
"group": "general"
},
{
"q": "¿Cuál es el océano más grande del mundo?\n\n[EN] What is the largest ocean in the world?",
"options": [
"Atlántico / Atlantic",
"Índico / Indian",
"Pacífico / Pacific",
"Ártico / Arctic"
],
"correct": 2,
"fun_fact": "El Océano Pacífico cubre más de 165 millones de km² — más que toda la superficie terrestre combinada. / The Pacific Ocean covers over 165 million km² — more than all land surfaces combined.",
"group": "general"
}
]