Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 640 Bytes

contribute.md

File metadata and controls

37 lines (28 loc) · 640 Bytes

Forking & Syncing

git clone [email protected]:YOUR_USERNAME/antioch.git
  • Configure upstream repository
git remote add upstream https://github.com/pytube/antioch.git
  • To sync your fork with upstream
git fetch upstream
git checkout master
git merge upstream/master

Development Environment with Docker

  • build
docker-compose build

Running Tests

docker-compose run antioch-tests