No description
Find a file
2025-05-28 10:04:57 +05:30
src abc! 2025-05-28 10:04:57 +05:30
.env.example now people can join and leave the game 2025-05-12 10:22:19 +05:30
.gitignore abc! 2025-05-28 10:04:57 +05:30
.npmrc first commit 2025-05-11 16:21:57 +05:30
.prettierignore first commit 2025-05-11 16:21:57 +05:30
.prettierrc abc! 2025-05-28 10:04:57 +05:30
eslint.config.js abc! 2025-05-28 10:04:57 +05:30
jsconfig.json abc! 2025-05-28 10:04:57 +05:30
other-package.json abc! 2025-05-28 10:04:57 +05:30
package-lock.json abc! 2025-05-28 10:04:57 +05:30
package.json abc! 2025-05-28 10:04:57 +05:30
README.md added logo to the readme 2025-05-18 19:24:24 +05:30
svelte.config.js abc! 2025-05-28 10:04:57 +05:30
vite.config.js first commit 2025-05-11 16:21:57 +05:30

DaKahootClone

DaKahootClone's logo

The best ever kahoot clone.

A project by RezHackXYZ for Neighborhood

(⚠️ This project is one of a bunch of tools that are part of a larger project. See the original project repo for the full collection.)

👉 Try It Now


Tech Stack

  • SvelteKit
  • JavaScript
  • Supabase

Current DB Diagram

    erDiagram
    GAMES {
        int ID PK
        string creator
        date creationDate
        string status
    }
    QUESTIONS {
        int ID PK
        int GameID FK
        string QuestionsText
        string CorrectAnswer
    }
    ANSWERS {
        int ID PK
        int QuestionID FK
        string content
    }
    ANSWEREDBY {
        int ID PK
        int QuestionID FK
        string NameOfAnswerer
    }
    PLAYERS {
        int ID PK
        int GameID FK
        int Score
    }

    GAMES ||--o{ QUESTIONS : contains
    QUESTIONS ||--o{ ANSWERS : has_answers
    QUESTIONS ||--o{ ANSWEREDBY : has_answeredby
    GAMES ||--o{ PLAYERS : has_players