Logo Lanfrica

mdbasheer37/M-makari

Record type:

software
Creator:
mdb
Host:
# πŸ“Ί Makari Islamic TV A complete, production-ready Islamic streaming platform dedicated to the lectures, tafsir, and teachings of **Malam Ibrahim Makari**. --- ## ✨ Features | Feature | Status | |---|---| | Splash Screen + Onboarding | βœ… | | Home Page (Featured, Trending, Live, Categories) | βœ… | | Tafsir Section | βœ… | | Audio Player (Stream, Download, Speed, Sleep Timer) | βœ… | | Video Player (YouTube embed + Direct stream) | βœ… | | Live Streaming | βœ… | | 10 Content Categories | βœ… | | Full-text Search | βœ… | | Favorites System | βœ… | | Downloads (offline) | βœ… | | Push Notifications | βœ… | | Islamic Library (Books/PDFs) | βœ… | | Prayer Times (GPS-based) | βœ… | | Qibla Direction Compass | βœ… | | User Authentication (Register/Login) | βœ… | | Admin Dashboard | βœ… | | Dark Mode + Light Mode | βœ… | | Hausa + English Language | βœ… | | Mobile-first Responsive Design | βœ… | | Skeleton Loaders + Shimmer Effects | βœ… | --- ## πŸ› οΈ Tech Stack - **Frontend:** HTML5, CSS3, Vanilla JavaScript (Mobile-first PWA) - **Backend:** Python FastAPI - **Database:** SQLite (dev) / PostgreSQL (production) - **Auth:** JWT (python-jose + bcrypt) - **Media:** Static file serving + YouTube embed + Direct stream - **Deployment:** Render / Railway --- ## πŸš€ Quick Start ### 1. Backend Setup ```bash cd backend # Install dependencies pip install -r requirements.txt # Copy env file cp .env.example .env # Seed database with demo content python seed.py # Run the server uvicorn main:app --reload --port 8000 ``` API will be live at: `localhost` API Docs: `localhost` ### 2. Frontend Simply open `frontend/index.html` in a browser, or serve it: ```bash cd frontend python -m http.server 3000 # Open localhost ``` The frontend auto-detects the API at `localhost:8000` in development. --- ## πŸ” Default Admin Account ``` Email: admin@makariilamictv.com Password: admin123 ``` > ⚠️ Change this immediately in production! --- ## πŸ“ Project Structure ``` makari-islami …