Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pankubhaiya/lms
https://github.com/pankubhaiya/lms
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pankubhaiya/lms
- Owner: pankubhaiya
- Created: 2024-03-10T11:37:34.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-10T11:44:01.000Z (11 months ago)
- Last Synced: 2024-10-27T22:23:51.597Z (3 months ago)
- Language: HTML
- Size: 290 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
# Edusphere - Learning Management System
![Edusphere Logo](link-to-your-logo.png)
Edusphere is a robust Learning Management System built with Django and Angular, designed to streamline the education process. It provides a user-friendly platform for students and instructors to access courses, assignments, announcements, and more.
## Features
- **User Authentication**: Secure login and signup for students and instructors.
- **Personalized Dashboards**: Customized dashboards for students and instructors.
- **Course Management**: Access to course materials, assignments, and announcements.
- **Assignment Submission**: Easy submission of assignments with tracking.
- **User Roles**: Distinct functionalities for students and instructors.
- **Department Management**: Organize courses and students by departments.## Backend (Django)
The backend of Edusphere is powered by Django and manages core entities and API endpoints. It includes entities such as students, instructors, courses, departments, assignments, submissions, and announcements.
### API Endpoints
- Students API: `/api/students/`
- Instructors API: `/api/instructors/`## Frontend (Angular)
The front end of Edusphere is built with Angular and offers an intuitive user interface for students and instructors to interact with the system. It includes login and signup functionality, as well as personalized dashboards for each user type.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/yourusername/EduSphere-LMS.git
cd EduSphere-LMS
```2. Backend Setup (Django):
- Create a Python virtual environment and activate it.
- Install backend dependencies using pip.
- Configure the database and environment variables.
- Run the Django development server.```bash
cd Backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
```3. Frontend Setup (Angular):
- Install frontend dependencies using npm.
- Start the Angular development server.```bash
cd Frontend/edusphere_project
npm install
ng serve
```4. Access Edusphere in your web browser: [http://localhost:4200](http://localhost:4200)
## Usage
1. **Signup**: Create an account as a student or instructor.
2. **Login**: Sign in with your credentials.
3. **Dashboard**: Explore your personalized dashboard.
4. **Courses**: Access and enroll in courses.
5. **Assignments**: View and submit assignments.
6. **Announcements**: Stay updated with course announcements.
7. **Department Management**: Administer courses and students by departments.## Screenshots
## Contributing
We welcome contributions! Please follow our [Contribution Guidelines](CONTRIBUTING.md) to get started.
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.
## Acknowledgments
- Special thanks to all our contributors.
- Inspired by the need for a modern Learning Management System.## Contact
Have questions or suggestions? Feel free to contact us at [[email protected]](mailto:[email protected]).
---