Creates a Spotify playlist that spells out a message.
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:latestIf 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.
After starting the application, enter your message β and the application will generate a Spotify playlist that spells out the message!
Hope you have fun!! π΅
- 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_tokeninapp.js) - Give the user an option to go back to create another mixtape, without re-loading the page
