def bootstrap(): """ Bootstraps Github issues with default configuration. """ auth = github.get_auth() github.delete_existing_labels(auth) github.create_labels(auth)
def bootstrap_issues(): """ Bootstraps Github issues with default configuration. """ auth = github.get_auth() github.delete_existing_labels(auth) github.create_labels(auth) github.create_tickets(auth) github.create_milestones(auth) github.create_hipchat_hook(auth)
def bootstrap(): """ Bootstraps Github issues with default configuration. """ if app_config.PROJECT_SLUG == '$NEW_PROJECT_SLUG': print 'You can\'t run the issues bootstrap until you\'ve set PROJECT_SLUG in app_config.py!' return auth = github.get_auth() github.delete_existing_labels(auth) github.create_labels(auth) github.create_tickets(auth) github.create_milestones(auth)
def bootstrap(): """ Bootstraps Github issues with default configuration. """ if app_config.PROJECT_SLUG == '$NEW_PROJECT_SLUG': logger.warn('You can\'t run the issues bootstrap until you\'ve set PROJECT_SLUG in app_config.py!') return auth = github.get_auth() github.delete_existing_labels(auth) github.create_labels(auth) github.create_tickets(auth) github.create_milestones(auth) github.create_hipchat_hook(auth)