https://github.com/juanifioren/simpsonitos
Juego de preguntas y respuestas acerca de Los Simpsons.
https://github.com/juanifioren/simpsonitos
answers game game-engine juego-trivia preguntas simpsons web
Last synced: over 1 year ago
JSON representation
Juego de preguntas y respuestas acerca de Los Simpsons.
- Host: GitHub
- URL: https://github.com/juanifioren/simpsonitos
- Owner: juanifioren
- Created: 2015-05-02T23:15:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-14T01:46:47.000Z (about 11 years ago)
- Last Synced: 2025-01-17T23:44:07.529Z (over 1 year ago)
- Topics: answers, game, game-engine, juego-trivia, preguntas, simpsons, web
- Language: CoffeeScript
- Size: 574 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simpsonitos: Juego Trivia
Un juego de tipo trivia, preguntas y respuestas acerca de Los Simpsons. Hecho completamente con [Meteor](http://meteor.com/).
## Instalación
No se necesita ninguna otra dependencia, solo Meteor.
Antes de correr el juego, necesitas crear una App en [Facebook Developers](https://developers.facebook.com/apps/). Luego agregar el **ID** y el **SECRET** al `settings.json`.
```bash
# Clonar el proyecto.
$ git clone https://github.com/juanifioren/simpsonitos.git
$ cd simpsonitos/
# Cargar las preguntas.
$ mongoimport --port 3001 --db meteor --collection questions < ./questions.json
# Correr el juego.
$ meteor run --settings settings.json
```
## Preguntas y Respuestas
Si bien no hay muchas preguntas (pueden repetirse a lo largo del juego), es fácil agregar más. Solo ten en cuenta el siguiente formato. Se agregan al archivo `questions.json`.
```json
{ "_id": "", "difficulty": 0, "text": "", "answers": [ { "number": 1, "text": "" }, { "number": 2, "text": "" }, { "number": 3, "text": "" }, { "number": 4, "text": "" } ], "correctAnswer": 1 }
```