metadata.rb 1.6 KB

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