I follow the Elastic Beanstalk docs ( http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs_express.html ), but I cannot deploy either the node.js application or PHP using git.
$ eb push Error: Failed to create the AWS Elastic Beanstalk application version Cannot run aws.push for local repository HEAD:
The same thing happens if I try to click from git
$ git aws.push Updating the AWS Elastic Beanstalk environment phpapp-env... Error: Failed to create the AWS Elastic Beanstalk application version
When you invoke eb init, AWS tools set up several git shortcuts. A challenge that fails ...
$.git/AWSDevTools/aws.elasticbeanstalk.createapplicationversion Error: Failed to create the AWS Elastic Beanstalk application version
The code for these python modules ...
from aws.dev_tools import * if __name__ == "__main__": dev_tools = DevTools() dev_tools.create_application_version(None, None)
I tried this for new php and node.js projects. I am running Python 2.7.2, Ruby 2.1.2p95 (version 2014-05-08 45877) [x86_64-darwin12.0]. Any thoughts?
source share