Data Commons Mixer is an API server that serves Data Commons Data API. It gets deployed in a Kubernetes cluster.
In Mixer GitHub repo, click on "Fork" button to fork the repo.
Clone the forked repo to your local machine and add datacommonsorg/mixer repo as a remote.
git clone [email protected]:<YOUR-REPO>/mixer.git
cd mixer
git remote add dc https://github.com/datacommonsorg/mixer.git
Every time when you want to send a Pull Request, do the following steps:
git checkout master
git pull dc master
git checkout -b new_branch_name
# Make some code change
git add .
git commit -m "commit message"
git push -u origin new_branch_name
Then in your forked repo, can send a Pull Request. Wait for approval of the Pull Request and merge the change.
Follow the Developer Guide.
Follow GKE Setup Guide.