No description
Find a file
2025-05-17 14:09:35 +05:30
.vscode made the loby working using the newer rDB and makeing everything to bbe better manageable by using folders and more components! 2025-05-17 13:57:02 +05:30
src huh what happen to the code??? the page got delete? 2025-05-17 14:09:35 +05:30
.env.example now people can join and leave the game 2025-05-12 10:22:19 +05:30
.gitignore trying to get the host game lobby work with the newer rDB 2025-05-15 19:42:58 +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 made the loby working using the newer rDB and makeing everything to bbe better manageable by using folders and more components! 2025-05-17 13:57:02 +05:30
eslint.config.js trying to get the host game lobby work with the newer rDB 2025-05-15 19:42:58 +05:30
jsconfig.json made the loby working using the newer rDB and makeing everything to bbe better manageable by using folders and more components! 2025-05-17 13:57:02 +05:30
package.json made the loby working using the newer rDB and makeing everything to bbe better manageable by using folders and more components! 2025-05-17 13:57:02 +05:30
postcss.config.js try 2 to fix verlcle bug 2025-05-11 19:23:37 +05:30
README.md made the loby working using the newer rDB and makeing everything to bbe better manageable by using folders and more components! 2025-05-17 13:57:02 +05:30
svelte.config.js made the loby working using the newer rDB and makeing everything to bbe better manageable by using folders and more components! 2025-05-17 13:57:02 +05:30
tailwind.config.js dsaasdsd 2025-05-11 16:59:40 +05:30
vite.config.js first commit 2025-05-11 16:21:57 +05:30

DB Diagrams

Current DB Diagram

    erDiagram
        GAMES {
            int GamePIN PK
            string gameStatus
            json questions
            jsonb players
        }

Goal MVP 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