simple spotify-clone web app developed with Django
git clone https://github.com/KeennyyW/spotify-clone.git
conda create --name <env_name>
conda activate <env_name>
pip install -r requirements.txt
- Go on the Spotify Developer site, create an account and get your credentials
- Create .env file in root and pass the credentials in
SPOTIFY_CLIENT_ID='your-credentials'
SPOTIFY_CLIENT_SECRET='your-credentials'
cd spotify
python manage.py runserver