Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 756 Bytes

File metadata and controls

11 lines (9 loc) · 756 Bytes

Calendar-Buddy

  1. 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"
  1. Stay up to date with remote changes: git fetch origin
  2. Set up your virtual environment: python3 -m venv env, and then source env/bin/activate
  3. Install dependencies (do it in virtual environment): pip install -r requirements.txt