Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.25 KB

README.md

File metadata and controls

52 lines (38 loc) · 1.25 KB

Music Streamer/Sharer/Management Mock Website

Prequisites

  • Python 3.7+

  • For Python to work on Windows

    If you see the below message, then set PYTHONPATH by follwing these instructions:

    'python' is not recognized as an internal or external command,
    operable program or batch file.
    

Installation

For Ubuntu and macOS

  • Create virtual environment for python3:
python3 -m venv env
  • Activate env virtual environment
source env/bin/activate
  • Run the following command
./start
  • Go to localhost:5000 on your preferred browser.

For Windows

  • Create virtual environment for python:
python -m venv env
  • Double click start.bat

  • Go to localhost:5000 on your preferred browser.

Assumptions

  • Any user can add music (only .mp3).
  • Any user can delete any songs available on the site.
  • Any two or more songs can have same title-artist-album but their URL-slug would be different.