Calendar-Buddy Clone the repository -- in bash terminal: git init: Initializes a new Git repository in the current directory. git clone [url]: Creates a copy of an existing remote repository. git config --global user.name "Your Name": Sets the global username for Git commits. eg. git config --global user.name "Josalin Wang" git config --global user.email "your.email@example.com": Sets the global email address for Git commits. eg. git config --global user.email "josalin.wang@gmail.com" Stay up to date with remote changes: git fetch origin Set up your virtual environment: python3 -m venv env, and then source env/bin/activate Install dependencies (do it in virtual environment): pip install -r requirements.txt