Skip to content

Write your Hello World

DanielBerman edited this page Aug 26, 2013 · 3 revisions

Introduction

The following example shows you how to create your first Web application with the Zend SDK, Github and the Zend Developer Cloud.

Commands

# clone an example project from a git repository
$ zend clone project -r https://[email protected]/ganoro/ExampleProject.git

# define a target environment to host your application
$ zend add target -d <account-name>:<account-password>

# set working directory
$ cd ExampleProject

# deploy the newly created application to the defined target
$ zend deploy application 

Details

Start by cloning an example project named 'ExampleProject' from a git repository (GitHub) and adding a target to host the application (alternatively detect your localhost target). This results in a fully deployable project, which includes a basic hello world Web interface along with basic deployment and manifest scripts which will be used for the deployment process.

The last command triggers the deployment process which deploys the application to the target.

Clone this wiki locally