@@ -86,6 +86,7 @@ Registration will discover SSH keys automatically and use the
8686 $ deis register http://my-deis-controller.fqdn
8787 username: myuser
8888 password:
89+ password (confirm):
8990 email: myuser@example.com
9091 Registered myuser
9192 Logged in as myuser
@@ -101,60 +102,55 @@ Registration will discover SSH keys automatically and use the
101102
102103 Find an application you’d like to deploy, or clone `an example app `_.
103104
104- Change into the application directory and use ``deis create `` to initialize
105- a new formation in a specific EC2 region.
105+ Change into the application directory and use ``deis formations: create `` to
106+ initialize a new formation in a specific EC2 region.
106107
107- Use the ``deis layers :scale `` command to provision nodes that will be
108+ Use the ``deis nodes :scale `` command to provision nodes that will be
108109dedicated to this formation.
109110
111+ Then create an application that references the formation::
112+
110113.. code-block :: console
111114
112115 $ cd <my-application-repo>
113- $ deis create --flavor=ec2-us-west-2
114- Creating formation ... done, created peachy-waxworks
116+ $ deis create --formation=dev1
117+ Creating application ... done, created nimbus-pamphlet
115118 Git remote deis added
116119
117- Creating runtime layer... done
118- Creating proxy layer... done
119-
120- Use deis layers:scale proxy=1 runtime=1 to scale a basic formation
121-
122- $ deis layers:scale proxy=1 runtime=1
123- Scaling layers... but first, coffee!
124- ...done in 232s
125-
126- Use `git push deis master` to deploy to your formation
127-
128-
129120 Use ``git push deis master `` to deploy your application.
130121
131122Deis will automatically deploy Docker containers and configure Nginx proxies
132123to route requests to your application.
133124
134125.. code-block :: console
135126
136- $ git push deis master
137- Counting objects: 146 , done.
127+ (deis)flopsy:example-go matt $ git push deis master
128+ Counting objects: 13 , done.
138129 Delta compression using up to 8 threads.
139- Compressing objects: 100% (122/122 ), done.
140- Writing objects: 100% (146/146 ), 21.54 KiB, done.
141- Total 146 (delta 84 ), reused 47 (delta 22 )
142- Node.js app detected
143- -----> Resolving engine versions
144- Using Node.js version: 0.10.15
145- Using npm version: 1.2.30
146- ...
147- -----> Building runtime environment
130+ Compressing objects: 100% (11/11 ), done.
131+ Writing objects: 100% (13/13 ), 6.20 KiB | 0 bytes/s , done.
132+ Total 13 (delta 2 ), reused 0 (delta 0 )
133+ Go app detected
134+ -----> Installing Go 1.1.2... done
135+ Installing Virtualenv... done
136+ Installing Mercurial... done
137+ Installing Bazaar ... done
138+ -----> Running: go get -tags heroku ./...
148139 -----> Discovering process types
149140 Procfile declares types -> web
150141
151- -----> Compiled slug size: 4.7 MB
142+ -----> Compiled slug size: 1.2 MB
152143 Launching... done, v2
153144
154- -----> peachy-waxworks deployed to Deis
155- http://ec2-198.51.100.36.us-west-2.compute.amazonaws.com ...
145+ -----> nimbus-pamphlet deployed to Deis
146+ http://ec2-198.51.100.22.us-west-2.compute.amazonaws.com
147+
148+ To learn more, use `deis help` or visit http://deis.io
149+
150+ To git@deis.mattboersma.com:nimbus-pamphlet.git
151+ * [new branch] master -> master
156152
157- $ curl -s http://ec2-198.51.100.36 .us-west-2.compute.amazonaws.com
153+ $ curl -s http://ec2-198.51.100.22 .us-west-2.compute.amazonaws.com
158154 Powered by Deis!
159155
160156 To learn more, use ``deis help `` or browse `the documentation `_.
0 commit comments