huseynt / Class_management

Home Page:https://class-management-ashy.vercel.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Class Management System

To install this project, follow these steps:

1.Clone the repository:

 git clone <repo-url>
 cd <repo-dir>

2.Install the necessary packages:

npm install  
  1. Add Redux Toolkit and React-Redux packages:
npm install @reduxjs/toolkit
npm install react-redux 

4.Start the project:

npm run dev

The project has the following structure:

  .
  ├── node_modules/
  ├── public/
  │   ├── information.md
  ├── src/
  │   ├── components/
  │   │   ├── Class/
  │   │   ├── Point/
  │   │   ├── Student/
  │   ├── interface/
  │   │   ├── interface.ts
  │   ├── redux/
  │   │   ├── expense/
  │   │   │   ├── lessonSlice.ts
  │   │   │   ├── pointSlice.ts
  │   │   │   ├── studentSlice.ts
  │   │   ├── index.ts
  │   │   ├── rootReducer.ts
  │   ├── App.module.css
  │   ├── App.tsx
  │   ├── index.css
  │   ├── main.tsx
  │   ├── vite-env.d.ts
  ├── .eslintrc.cjs
  ├── .gitignore
  ├── index.html
  ├── package-lock.json
  ├── package.json
  ├── README.md
  ├── tsconfig.app.json
  ├── tsconfig.json
  ├── tsconfig.node.json
  └── vite.config.ts

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

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

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list

About

https://class-management-ashy.vercel.app/


Languages

Language:TypeScript 81.6%Language:CSS 16.7%Language:JavaScript 0.9%Language:HTML 0.8%