frickerg / Web-Engineering-3

MAS SE (CAS 3) 2024
0 stars 0 forks source link

Web Engineering MAS2023 - Flashcards

This project is part of the Web Engineering course MAS2023 and aims to develop a flashcard application. The application allows users to create, manage, and review flashcards.

The application was developed using React, Vite, TypeScript and HMR (Hot Module Replacement), along with some ESLint rules.

Table of Contents

Participants

Installation

  1. Clone repository:

    git clone <repository-url>
    cd <repository-name>
  2. Install dependencies:

    pnpm i

Skripts

Login

Username Password Role
admin admin-pw Admin
player player-pw Player

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

   parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
   },