Created
June 15, 2011 22:49
-
-
Save emperorcezar/1028319 to your computer and use it in GitHub Desktop.
Quick start project script
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
#!/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