mirror of
https://github.com/Kizuren/QuizConnect.git
synced 2025-12-31 11:44:16 +01:00
A small Quiz platform
Bumps [form-data](https://github.com/form-data/form-data) from 4.0.2 to 4.0.4. - [Release notes](https://github.com/form-data/form-data/releases) - [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md) - [Commits](https://github.com/form-data/form-data/compare/v4.0.2...v4.0.4) --- updated-dependencies: - dependency-name: form-data dependency-version: 4.0.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|---|---|---|
| .github/workflows | ||
| public | ||
| Server | ||
| src | ||
| .gitignore | ||
| eslint.config.js | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.js | ||
| README.md | ||
| tailwind.config.js | ||
| tsconfig.app.json | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| vite.config.ts | ||
QuizConnect
A web application for creating and taking quizzes.
Project Structure
-
Server: .NET 9.0 backend with MongoDB integration
- RESTful API endpoints for user and admin functionality
- Question management services
- Authentication using tokens
-
Frontend: React with TypeScript, Vite, and Tailwind CSS
- User dashboard for taking quizzes
- Admin dashboard for managing questions
Getting Started
Prerequisites
- Node.js
- .NET 9.0 SDK
- Docker and Docker Compose (for containerized deployment)
- MongoDB instance
Development Setup
-
Clone the repository
-
Set up the backend:
cd Server dotnet restore dotnet run -
Set up the frontend:
npm install npm run dev
Deployment
Use Docker Compose for easy deployment:
cd Server
docker compose up -d
API Documentation
See Server/Server/apiDoc.md for detailed API documentation.