I hereby claim:
- I am soyrex on github.
- I am soyrex (https://keybase.io/soyrex) on keybase.
- I have a public key ASAtRFRjrehPJ6LtcnoyUBLKtClDsKfs30E3gtd3wivykgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
## Written by Alex Holt <alex@soyrex.com> | |
## License: Do What You Want. Free. | |
########################### | |
# Config: | |
args="" | |
htpasswd="htpasswd" | |
defaultName="Restricted Area" | |
defaultFilename=".htpasswd" |
from fabric.context_managers import cd | |
from fabric.operations import sudo,run,local | |
from fabric.state import env | |
env.hosts = ['127.0.0.1',] | |
env.user = 'username' | |
env.deploy_user = 'django' | |
env.key_filename = ['/Users/soyrex/Keys/keyfile.pem',] | |
def stage(): | |
local('git push origin staging') |