Created
March 27, 2012 02:54
-
-
Save juanje/2212077 to your computer and use it in GitHub Desktop.
Simple Chef recipe for installing Django
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
# Create the Cookbook | |
mkdir -p ~/django_guide/cookbooks/django/recipes | |
# Create the Recipe to install Django | |
cat > ~/django_guide/cookbooks/django/recipes/default.rb | |
python_pip 'django' do | |
action :install | |
end | |
^D | |
#NOTE: ^D stands for the key sequence Ctrl+D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment