Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 924 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 924 Bytes

Title TBD

How to run this

  1. Create virtual environment and activate it
python3 -m venv .venv && source .venv/bin/activate
  1. Install dependencies
pip install -r requirements.txt
  1. Run the app
python3 runMe.py

External dependencies

  • MongoDB deployed on Railway.app
  • Spotify API credentials required

Github multiple account management

Not really needed, but helpful

git remote set-url origin https://$USER@github.com/$USER/$REPO_NAME.git
# git push after setting remote url will prompt for password. GH Token is good enough

# Update name and email
git config user.name $NAME
git config user.email $EMAIL

# Check config for this repo
git config --get
git config --global --get # Check if we broke anything in the global config

# Reset the author with whatever we have configured now
git commit --amend --no-edit --reset-author