Skip to content

Instantly share code, notes, and snippets.

@emperorcezar
Created June 15, 2011 22:49
Show Gist options
  • Save emperorcezar/1028319 to your computer and use it in GitHub Desktop.
Save emperorcezar/1028319 to your computer and use it in GitHub Desktop.
Quick start project script
#!/bin/bash
virtualenv --no-site-packages "$1"
cd "$1"
source bin/activate
git clone 'git://github.com/zacharyvoase/django-zskel-project.git' "$1"
mkdir db
cd "$1"
find . -name '.empty' -exec rm {} \;
git config --unset remote.origin.url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment