https://github.com/losthopes/vue-quizes
Quizes build on top of Vue and Nuxt frameworks
https://github.com/losthopes/vue-quizes
js nuxt quizes vue
Last synced: 5 months ago
JSON representation
Quizes build on top of Vue and Nuxt frameworks
- Host: GitHub
- URL: https://github.com/losthopes/vue-quizes
- Owner: LostHopes
- Created: 2024-09-06T15:29:54.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T22:15:50.000Z (over 1 year ago)
- Last Synced: 2025-03-15T16:12:49.468Z (about 1 year ago)
- Topics: js, nuxt, quizes, vue
- Language: Vue
- Homepage:
- Size: 567 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quizes build using Nuxt and Vue
For more information check [refereces](#references)
and [setup](#setup)
how to install a project
with your specific package manager or understand
other related topics.
In order to run app locally, you need to have Node installed. (node -v)
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
```
Locally preview production build:
```bash
# npm
npm run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
# Requirements
- User should be able to create, update or remove his quizes;
- Keep the design simple and polished (do one thing well).
## Features
- search quizes;
- by user;
- by name;
- by date.
- create new quiz if user is registered;
- remove or update quiz;
- quiz pagination;
- show your results in the end.
# References
1. [Vue Official Website](https://vuejs.org)
2. [Nuxt Documentation](https://nuxt.com/docs)
3. [Choosing the right Data Solution PDF](https://yalantis.com/wp-content/uploads/2024/01/choosing-the-right-data-storage-solution-for-appointment-scheduling-system.pdf)
4. [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction)
5. [Prisma ORM Docs](https://www.prisma.io/docs)
6. [TypeScript Docs](https://www.typescriptlang.org/docs/)