A unified academic networking platform connecting Ethiopian university communities through knowledge sharing, Q&A, and collaboration.
# UNIPIA β Inter-University Academic Network Platform
UNIPIA is an inter-university academic collaboration platform designed to connect university students, researchers, and academic staff across institutions. The platform facilitates peer-to-peer Q&A, course study groups, verified academic profiles, and reputation tracking.
---
## π οΈ Technology Stack
### Backend
- **Framework**: Python 3.11+ / Django 5.0+
- **API Engine**: Django REST Framework (DRF) 3.15+
- **Authentication**: SimpleJWT (JSON Web Tokens with rotation)
- **Database**: MySQL 8.0+ (PyMySQL driver)
- **CORS & Filters**: `django-cors-headers`, `django-filter`
- **Environment**: `python-dotenv`
### Frontend
- **Framework**: React 19 + Vite 8
- **State & Data Fetching**: TanStack Query (React Query v5)
- **Routing**: React Router DOM v7
- **HTTP Client**: Axios (Centralized API Client with JWT interceptors)
- **Styling**: Tailwind CSS v4
- **Icons & Animations**: Lucide React, Framer Motion
- **Form Management**: React Hook Form + Zod
---
## π Repository Structure
```
UNIPIA/
βββ backend/ # Django REST API Backend
β βββ config/ # Project settings, URLs, ASGI/WSGI
β βββ common/ # Shared utils, exception handlers
β βββ apps/ # Domain-driven Django applications
β β βββ accounts/ # User profiles & University model
β β βββ questions/ # Questions, Answers & Tags
β β βββ groups/ # Study groups, posts & comments
β β βββ notifications/ # User notification system
β β βββ reputation/ # Point tracking & voting history
β β βββ moderation/ # Content flagging & reports
β βββ .env.example # Backend environment blueprint
β βββ manage.py # Django management CLI
β βββ requirements.txt # Python dependencies
βββ frontend/ # React + Vite Frontend Application
β βββ src/
β β βββ api/ # Centralized Axios client
β β βββ com β¦