https://nostalgify-xdt5.onrender.com/home Nostalgify is a web application that generates a users top tracks or artists in a retro aesthetic.
- Go to https://developer.spotify.com/dashboard/login and create an account and project
- go to your project and add your "Redirect URIs"
This application utilises Flask.
- Create and activate a virtual environment
# On Windows
python -m venv venv
venv\Scripts\activate
# On macOS/Linux
python -m venv venv
source venv/bin/activate
- Install dependencies
pip install -r requirements.txt
- Ensure that your virtual environment is activated and start Flask
flask run