Music Player Web App using Flask and htmx
- If you haven't already, install Python3
- (Optional) create and activate a new virtual environment with
python3 -m venv venv
- Run
pip install -r requirements.txt
- Make
secret.py
in the main repo folder and addAPP_SECRET_KEY = "anything"
inside it (needed for Flask sessions) - Make a directory inside
/static
calledmusic
and put your songs in there - Test the app with
flask --app app run --host=0.0.0.0