https://github.com/github-main-user/learning-management
a simple LMS project powered by django-rest-framework
https://github.com/github-main-user/learning-management
Last synced: 2 months ago
JSON representation
a simple LMS project powered by django-rest-framework
- Host: GitHub
- URL: https://github.com/github-main-user/learning-management
- Owner: github-main-user
- Created: 2025-06-10T18:23:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-12T11:28:57.000Z (11 months ago)
- Last Synced: 2025-07-12T13:22:08.207Z (11 months ago)
- Language: Python
- Homepage:
- Size: 250 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
**The project is still in progress**.
A simple learning management system backend, powered by Django REST Framework.
On this moment this LMS system gives you an ability to manage your courses and lessons.
It implements auth using JWT system.
# Tech Stack
- Django 5.x
- Django REST Framework 3.x
- PostgreSQL
- Python 3.13+
# Quick Start
1. Clone the repo
```bash
git clone https://github.com/github-main-user/learning-management
```
2. Enter the cloned directory
```bash
cd learning-management
```
3. Set up the .env file
```
cp .env.example .env
# then open in your editor end setup
```
4. Start the project.
```
./manage.py runserver
```
- The application will be available on `http://localhost:8000/`
- Admin Panel on `http://localhost:8000/admin/`