- I can login using my existing Twitter username/password
- Should use the Django Social Auth module: https://github.com/omab/django-social-auth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
================================================================================ | |
Error executing action `run` on resource 'execute[/opt/tennis-ace/shared/env/bin/pip install -r requirements.txt]' | |
================================================================================ | |
Mixlib::ShellOut::ShellCommandFailed | |
------------------------------------ | |
Expected process to exit with [0], but received '1' | |
---- Begin output of /opt/tennis-ace/shared/env/bin/pip install -r requirements.txt ---- | |
STDOUT: Downloading/unpacking git+git://github.com/ZG-Tennis/django-curation (from -r requirements.txt (line 27)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Vagrantfile for the proxy VM | |
Vagrant.configure("2") do |config| | |
config.vm.define "zg-docker-host", primary: true do |dhost| | |
dhost.vm.box = "yungsang/boot2docker" | |
dhost.vm.box_version = "= 1.4.1" | |
dhost.vm.network :private_network, ip: "192.168.100.100" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import invariant from 'invariant'; | |
function getDisplayName(Component) { | |
return Component.displayName || Component.name || 'Component'; | |
} | |
export default function ConnectTransitionWrapper() { | |
return function wrapConnectedComponent(ConnectedComponent) { |