We could use the project at github.com/durden/frappy to allow developers to specify their github credentials in the local_settings.py and automatically fill out the user details of whomever they want for developing locally.
Add frappy to requirements file
Update settings to use something like the following for the GITHUB_USER_JSON variable:
from frappy.services.github import Github
from frappy.core.auth import UserPassAuth
auth = UserPassAuth('joe', 'password')
g = Github(auth=auth)
r = g.users('durden')
GITHUB_USER_JSON = r.response
We could use the project at github.com/durden/frappy to allow developers to specify their github credentials in the local_settings.py and automatically fill out the user details of whomever they want for developing locally.
from frappy.services.github import Github from frappy.core.auth import UserPassAuth auth = UserPassAuth('joe', 'password')
g = Github(auth=auth)
r = g.users('durden') GITHUB_USER_JSON = r.response