Getting Started with Amazon Elastic Beanstalk

AWS Elastic Beanstalk is a PaaS (Platform As Service) allow you to quickly deploy applications. To install AWS Elastic Beanstalk command line tool, run sudo pip install awsebcli Starting your first Project Create a folder with a php file. mkdir ~/www/eb-project-1 cd ~/www/eb-project-1 echo “” > index.php Add our project to git. git init git … Read more