metadata.rb 1.6 KB

12345678910111213141516171819202122
  1. maintainer "Opscode, Inc."
  2. maintainer_email "cookbooks@opscode.com"
  3. license "Apache 2.0"
  4. description "Deploys and configures a variety of applications"
  5. long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
  6. version "1.0.0"
  7. recipe "application", "Loads application databags and selects recipes to use"
  8. recipe "application::django", "Deploys a Django application specified in a data bag with the deploy_revision resource"
  9. recipe "application::gunicorn", "Sets up the deployed Django application with Gunicorn as the web server"
  10. recipe "application::java_webapp", "Deploys a Java web application WAR specified in a data bag with the remote_file resource"
  11. recipe "application::mod_php_apache2", "Sets up a deployed PHP application as a mod_php virtual host in Apache2"
  12. recipe "application::passenger_apache2", "Sets up a deployed Rails application as a Passenger virtual host in Apache2"
  13. recipe "application::php", "Deploys a PHP application specified in a data bag with the deploy_revision resource"
  14. recipe "application::rails", "Deploys a Rails application specified in a data bag with the deploy_revision resource"
  15. recipe "application::tomcat", "Sets up the deployed Java application with Tomcat as the servlet container"
  16. recipe "application::unicorn", "Sets up the deployed Rails application with Unicorn as the web server"
  17. %w{ runit unicorn apache2 passenger_apache2 tomcat python gunicorn php }.each do |cb|
  18. depends cb
  19. end
  20. depends "python", ">= 1.0.6"