Skip to content

Instantly share code, notes, and snippets.

@juanje
Created March 27, 2012 02:54
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save juanje/2212077 to your computer and use it in GitHub Desktop.
Simple Chef recipe for installing Django
# 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