- Create virtual environment and activate it
python3 -m venv .venv && source .venv/bin/activate
- Install dependencies
pip install -r requirements.txt
- Run the app
python3 runMe.py
- MongoDB deployed on Railway.app
- Spotify API credentials required
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