https://github.com/danitilahun/music_player_django
A simple Django-based music player app that allows users to upload and play audio files directly from the server. The app features an easy-to-use interface for music playback.
https://github.com/danitilahun/music_player_django
django music-player python
Last synced: 3 months ago
JSON representation
A simple Django-based music player app that allows users to upload and play audio files directly from the server. The app features an easy-to-use interface for music playback.
- Host: GitHub
- URL: https://github.com/danitilahun/music_player_django
- Owner: Danitilahun
- Created: 2025-02-05T13:56:57.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-02-05T14:48:23.000Z (4 months ago)
- Last Synced: 2025-02-05T15:45:01.864Z (4 months ago)
- Topics: django, music-player, python
- Language: Python
- Homepage:
- Size: 17.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Music Player App (Django)
A simple music player web application built with Django that allows users to play audio files. Users can upload and play music files directly from the server, with a clean and easy-to-use interface.
## Features
- **Audio File Upload**: Users can upload music files.
- **Music Playback**: Play uploaded music files directly from the server.
- **Simple Interface**: Easy-to-use web interface to control music playback.## Technologies Used
- **Backend**: Django (Python)
- **Frontend**: HTML, CSS
- **Database**: SQLite (for managing file metadata)## Installation
Follow these steps to set up the project locally.
1. **Clone the repository**:
```bash
git clone https://github.com/Danitilahun/Music_Player_Django.git
cd Music_Player_Django
```2. **Create a virtual environment**:
```bash
python -m venv venv
```3. **Activate the virtual environment**:
- On Windows:
```bash
venv\Scripts\activate
```- On macOS/Linux:
```bash
source venv/bin/activate
```4. **Install the dependencies**:
```bash
pip install -r requirements.txt
```5. **Run migrations**:
```bash
python manage.py migrate
```6. **Run the server**:
```bash
python manage.py runserver
``````