Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kayyz1/lerng-frontend
Frontend service for Learning Management System (LMS)
https://github.com/kayyz1/lerng-frontend
react redux-toolkit
Last synced: about 2 months ago
JSON representation
Frontend service for Learning Management System (LMS)
- Host: GitHub
- URL: https://github.com/kayyz1/lerng-frontend
- Owner: kayYZ1
- Created: 2024-03-06T18:30:54.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T11:23:31.000Z (about 2 months ago)
- Last Synced: 2024-10-29T13:16:30.627Z (about 2 months ago)
- Topics: react, redux-toolkit
- Language: TypeScript
- Homepage: https://lerng.netlify.app/
- Size: 4.53 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LERNG - Frontend
Lerng is a platform that allows users to learn Linux for free through interactive courses, quizzes, and learning paths. This repository hosts the backend for the Lerng application, handling core logic, data management, user authentication, and communication with the frontend and database.
## Features
- **User Authentication & Authorization**: Secure sign-up, login, password recovery, and user roles.
- **Course Management**: CRUD operations for courses, including course creation, editing, and deletion(soon) by instructors.
- **Interactive Learning**: Users can follow learning paths with lessons, quizzes, and challenges.
- **Progress Tracking**: Store user progress from quizes and sum it up per course.
- **Search & Filtering**: Search and filter for specific courses.
- **Admin Dashboard**: Manage users, courses, and reports (admin privileges required).## Demo
https://lerng.netlify.app/
## Tech Stack
**Client:** React, Redux-Toolkit-Query, Vitest, MUI/Joy, Cloudinary
## Environment Variables
**Cloudinary**
`VITE_UPLOAD_PRESET`
`VITE_UPLOAD_PRESET_COURSE`
`VITE_API_URL`
**Production and development api url**
`VITE_PROD_URL`
`VITE_DEV_URL`
## Run LocallyClone the project
```bash
git clone https://github.com/kayYZ1/lerng-frontend.git
```Go to the project directory
```bash
cd lerng-frontend
```Install dependencies
```bash
npm install
```Start the server
```bash
npm run dev
```## Running Tests
To run tests, run the following command.
Currently covering only reset/forgot password forms.
```bash
npm run test
```