Skip to content

Creates a Spotify playlist that spells out a message.

Notifications You must be signed in to change notification settings

jchanke/mixtape50

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📼 mixtape50

Creates a Spotify playlist that spells out a message.

mixtape50 demo

🔧 Installation

The easiest way to run this locally is via Docker:

docker pull josephchanke/mixtape50:latest
docker run -d \
  -p 5000:5000 \
  --name mixtape50 \
  -e FLASK_SECRET=your_secure_secret_key \
  josephchanke/mixtape50:latest

If you want to deploy this, remember to set FLASK_SECRET to something really secret. See the Flask documentation for how to generate one.

The application should now be running on http://localhost:5000.

🚀 Usage

After starting the application, enter your message — and the application will generate a Spotify playlist that spells out the message!

Hope you have fun!! 🎵

📝 To-dos

  • Make the 'X' button on the modal close the modal
  • Prevent the user from submitting a message if they aren't authenticated (check for access_token in app.js)
  • Give the user an option to go back to create another mixtape, without re-loading the page