🚀 A backend system to help professors find and manage Teaching Assistants (TAs) for their courses.
full project can be found here https://github.com/SE402-G4/Software-Engineering-Project/tree/main
✔ Professor-TA Matching: Efficiently connect professors with qualified TAs based on course requirements.
✔ Automated Workflow: Streamline TA hiring, assignments, and communication.
✔ Role-Based Access: Secure endpoints for professors, TAs, and admins.
✔ Scalable API: Built with Django REST Framework for robustness and flexibility.
- Universities needing a structured TA allocation system
- Professors searching for TAs with specific skills (e.g., grading, lab assistance)
- Departments managing TA workloads and performance
Backend: Django REST Framework
Database: PostgreSQL (default) / SQLite (dev)
Authentication: JWT (via SimpleJWT)
Deployment: Docker-ready
git clone https://github.com/yourusername/sama-backend.git
cd sama-backend
python -m venv venv
source venv/bin/activate # Linux/Mac | venv\Scripts\activate for Windows
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

