Simple quiz app for Nuxt3 learning and college exam questions (current question database is not correct and only sample)
Available at https://nom-tau.vercel.app/
To add your own database replace the file /public/questions.json with your own json file.
The JSON structure you need to maintain:
{
"question": "Question title here!",
"answers": [
"good answer",
"bad answer",
"bad answer",
"bad answer",
"bad answer"
]
}- a new mode that repeats at the end the questions we answered wrong
- multiple choice
- different grading modes, negative points etc.
Make sure to install the dependencies
yarn installStart the development server on http://localhost:3000
yarn devBuild the application for production:
yarn buildCheckout the deployment documentation.
