Github bills per repository. Moving unused repositories to an archival tier can reduce costs. You can still use Github for your daily flow, but not pay for untouched data.
This file contains hidden or 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
| diff --git a/django-openstack/django_openstack/auth/views.py b/django-openstack/django_openstack/auth/views.py | |
| index 23e317f..51fec34 100644 | |
| --- a/django-openstack/django_openstack/auth/views.py | |
| +++ b/django-openstack/django_openstack/auth/views.py | |
| @@ -37,6 +37,36 @@ class Login(forms.SelfHandlingForm): | |
| messages.error(request, 'Error authenticating: %s' % e.message) | |
| +class LoginWithTenant(forms.SelfHandlingForm): | |
| + username = forms.CharField(max_length="20", label="User Name") |
This file contains hidden or 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
| #!/bin/sh | |
| cd /mnt | |
| curl -k -O https://raw.github.com/anotherjesse/vcap/auto/setup/install | |
| chmod +x install | |
| ./install | |
| ln -s /usr/local/rvm/bin/ruby /usr/local/bin/ | |
| cd /cloudfoundry | |
| bin/vcap start |
This file contains hidden or 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
| # brew install couchdb | |
| # sudo easy_install pip | |
| # pip install couchapp | |
| # git clone https://github.com/codeforamerica/muralapp.git | |
| # cd muralapp | |
| # cp javascripts/settings.example.js javascripts/settings.js | |
| # vi javascripts/settings.js | |
| # cd couchapp | |
| # couchapp push . http://localhost:5984/murals | |
| # cd .. |
This file contains hidden or 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
| Sign up for a twitter account | |
| Sign up for a google maps api key | |
| Change text and twitter address | |
| Change maps api key | |
| Change map center location | |
| [done] | |
| Clone into openlexington's github: http://github.com/openlexington/murlamapper.git |
This file contains hidden or 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
| # brew install couchdb | |
| # sudo easy_install pip | |
| # sudo pip install couchapp | |
| # brew install node | |
| # curl http://npmjs.org/install.sh | sh | |
| # git clone https://github.com/openlexington/muralmapper.git | |
| # cd muralmapper | |
| [TWITTER STUFF] | |
| # cp node/config.example.js node/config.js |
This file contains hidden or 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
| NOVNC_BRANCH=master | |
| NOVACLIENT_BRANCH=master | |
| KEYSTONECLIENT_BRANCH=master | |
| QUANTUM_CLIENT_BRANCH=master | |
| MELANGECLIENT_BRANCH=master | |
| NOVA_BRANCH=stable/essex | |
| SWIFT_BRANCH=stable/essex | |
| GLANCE_BRANCH=stable/essex | |
| KEYSTONE_BRANCH=stable/essex |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| Default deployment scenario: | |
| https://github.com/capistrano/capistrano/blob/master/lib/capistrano/tasks/framework.rake#L59 | |
| (all of which start as empty tasks) | |
| starting started | |
| updating updated | |
| publishing published | |
| finishing finished | |
| including capistrano/deploy adds a few more hooks | |
| starting => check |
This file contains hidden or 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
| #!/usr/bin/env ruby | |
| # Inspired by: | |
| # http://blog.jverkamp.com/2015/07/22/finding-aws-iam-users-by-access-key/ | |
| require 'fog/aws' | |
| Fog.credential = ARGV.shift.to_sym | |
| search_id = ARGV.shift |