The Trivia app allows to hold trivia on a regular basis and created a webpage to manage the trivia app and play the game,
The application can:
- Display questions - both by questions and category. Questions shows the question, category and difficulty rating by default and can show/hide the answer.
- Delete questions.
- Add questions but require that it include question and answer text.
- Search for questions based on a text query string.
- Play the quiz game, randomizing either all questions or within a specific category.
The ./backend directory contains a completed Flask and SQLAlchemy server.
The ./frontend directory contains a complete React frontend to consume the data from the Flask server. The endpoints are used to supply the data from the server to the frontend.
Pay special attention to what data the frontend is expecting from each API response to help guide how you format your API.