zot24
3/27/2012 - 2:54 AM

Simple Chef recipe for installing Django

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