Youtify is a Django-based web application inspired by Spotify and YouTube, allowing users to browse, stream, and manage audio/video content. This project includes full user authentication with Django's built-in authentication system.
- 🔐 User registration, login, logout
- 🎧 Audio/video content browsing
- 📁 User dashboard/profile
- 🛡️ Secure user authentication (Django auth)
- 🧩 Extendable and modular project structure
(Optional: Add screenshots or GIFs here to showcase the UI)
- Backend: Django 4.x+
- Database: SQLite (default) / PostgreSQL (optional)
- Frontend: HTML, CSS, Bootstrap (or your choice)
- Auth: Django built-in authentication system
git clone https://github.com/sophonie-1/yuottify.git
cd yuottify
Create a Virtual Environment:
python -m venv venv
source venv/bin/activate # For Linux/macOS
venv\Scripts\activate # For Windows
Install Dependencies:
pip install -r requirements.txt
Run the Development Server:
python manage.py runserver