Skip to content

Instantly share code, notes, and snippets.

@hzbd
Forked from oyakata/djscript.py
Created April 23, 2013 17:02
Show Gist options
  • Save hzbd/5445444 to your computer and use it in GitHub Desktop.
Save hzbd/5445444 to your computer and use it in GitHub Desktop.
import fabric.api as api
with api.env_shell("PYTHONPATH=. DJANGO_SETTINGS_MODULE=settings.imagawa"):
api.run("python dosomething.py")
import fabric.api as api
with api.prefix(". /home/www/bin/activate"):
fabric.api.run("./manage.py syncdb")
import fabric.api as api
with api.path("/usr/local/bin", behavior="prepend"):
api.run("python -V")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment