{"id":19681130,"url":"https://github.com/nz-m/elms-swe","last_synced_at":"2025-04-29T04:31:53.080Z","repository":{"id":48240960,"uuid":"516455804","full_name":"nz-m/eLMS-SWE","owner":"nz-m","description":"e-Learning management and course assessment system with Django","archived":false,"fork":false,"pushed_at":"2023-10-15T21:05:09.000Z","size":8833,"stargazers_count":101,"open_issues_count":1,"forks_count":40,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-05T13:11:13.250Z","etag":null,"topics":["attendance-system","bootstrap5","chartjs","course-management-system","django","django-application","django-project","learning-management-system","lms","quiz-app"],"latest_commit_sha":null,"homepage":"http://neaz.pythonanywhere.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nz-m.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-21T17:02:06.000Z","updated_at":"2025-03-23T17:17:12.000Z","dependencies_parsed_at":"2023-01-19T20:03:17.317Z","dependency_job_id":null,"html_url":"https://github.com/nz-m/eLMS-SWE","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nz-m%2FeLMS-SWE","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nz-m%2FeLMS-SWE/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nz-m%2FeLMS-SWE/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nz-m%2FeLMS-SWE/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nz-m","download_url":"https://codeload.github.com/nz-m/eLMS-SWE/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251432935,"owners_count":21588680,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["attendance-system","bootstrap5","chartjs","course-management-system","django","django-application","django-project","learning-management-system","lms","quiz-app"],"created_at":"2024-11-11T18:07:01.324Z","updated_at":"2025-04-29T04:31:52.771Z","avatar_url":"https://github.com/nz-m.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# e-Learning Management System\n\nA learning management and online assessment system for academic education.\n\n## Features\n\n- Admin adds courses, teachers, and students and assigns them courses.\n- The teacher creates course content, announcements, assignments, quizzes, takes attendance, etc. A teacher can see the details and analysis of the assessments.\n- Students can enroll in the courses using the access key, see the course content of the enrolled courses, participate in assessments and see their results in detail.\n- Discussion section for both teacher and student.\n\n## Relational Schema\n\n![schema](https://user-images.githubusercontent.com/87283264/187967219-55bea00e-3151-488a-a4be-d2a95b9d8a5c.png)\n\n## Tech Stack\n\n1. Django 4.0.4\n2. Bootstrap 5.0.2\n3. jQuery 3.6.0\n4. Chart.js v3.9.1\n5. Animate.css 4.1.1\n\n## UI\n\n![Screenshot (65)](https://user-images.githubusercontent.com/87283264/194387627-47bc4506-5acb-46da-8ae0-70ea1e7e4eb8.png)\n![Screenshot (63)](https://user-images.githubusercontent.com/87283264/194389617-1d1118a5-e0a1-41a2-94b6-ef636e6a8d5e.png)\n![Screenshot (70)](https://user-images.githubusercontent.com/87283264/194387776-552bdd11-9252-4be2-8139-10e0f270c09f.png)\n![Screenshot (71)](https://user-images.githubusercontent.com/87283264/194389301-da1f2cd5-11fd-469d-9137-380c4916e169.png)\n![Screenshot (72)](https://user-images.githubusercontent.com/87283264/194389315-c59fbae1-b623-4ef7-bc5b-7cab6c1ae3a8.png)\n![Screenshot (67)](https://user-images.githubusercontent.com/87283264/194387798-77c6ba2c-9089-4469-88e0-282191535211.png)\n![Screenshot (68)](https://user-images.githubusercontent.com/87283264/194387811-bd22cd8c-854c-4849-9aa9-0a71b53494a2.png)\n![Screenshot (69)](https://user-images.githubusercontent.com/87283264/194387822-649bd890-cb57-47b5-b380-4e30499ae142.png)\n\n## Run Locally\n\n1. Clone the project\n\n```bash\ngit clone https://github.com/nz-m/eLMS-SWE.git\n```\n\n2. Go to the project directory\n\n```bash\ncd eLMS-SWE\n```\n\n3. Create a virtual environment and activate it (Windows)\n\n```bash\npython -m venv env\n```\n\n```bash\nenv\\Scripts\\activate\n```\n\n4. Install dependencies\n\n```bash\npip install -r requirements.txt\n```\n\n\u003e **Note:** If you're using newer versions of python(3.10+), you may need to add the `--use-deprecated=legacy-resolver` option when installing dependencies with `pip` to avoid errors :\n\n```bash\npip install -r requirements.txt --use-deprecated=legacy-resolver\n```\n\n5. Make migrations and migrate\n\n```bash\npython manage.py makemigrations\n```\n\n```bash\npython manage.py migrate\n```\n\n6. Create admin/superuser\n\n```bash\npython manage.py createsuperuser\n```\n\n7. Finally run the project\n\n```bash\npython manage.py runserver\n```\n\nNow the project should be running on http://127.0.0.1:8000/\n\nLogin as admin and add some courses, teacher and students.\n\nDemo : https://youtu.be/NyL2ajUNxYk\n\n## License\n\n[The MIT License (MIT)](https://github.com/nz-m/eLMS-SWE/blob/main/LICENCE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnz-m%2Felms-swe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnz-m%2Felms-swe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnz-m%2Felms-swe/lists"}