https://github.com/gitfoxcode/quiznuxt
Quiz written in Nuxt 3.0
https://github.com/gitfoxcode/quiznuxt
nuxt quiz
Last synced: 3 months ago
JSON representation
Quiz written in Nuxt 3.0
- Host: GitHub
- URL: https://github.com/gitfoxcode/quiznuxt
- Owner: gitFoxCode
- Created: 2022-01-28T22:23:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-21T12:47:50.000Z (about 3 years ago)
- Last Synced: 2025-02-14T17:33:29.815Z (5 months ago)
- Topics: nuxt, quiz
- Language: Vue
- Homepage: https://nom-tau.vercel.app/
- Size: 181 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quiznuxt
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:
```json
{
"question": "Question title here!",
"answers": [
"good answer",
"bad answer",
"bad answer",
"bad answer",
"bad answer"
]
}
```
### TO DO:
- a new mode that repeats at the end the questions we answered wrong
- multiple choice
- different grading modes, negative points etc.## Setup
Make sure to install the dependencies
```bash
yarn install
```## Development
Start the development server on http://localhost:3000
```bash
yarn dev
```## Production
Build the application for production:
```bash
yarn build
```Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).