Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating the information about the tornado version #235

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 16 additions & 13 deletions Guides/Python/Tornado.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and tools that power FriendFeed written in Python.
In this tutorial we're going to show you how to deploy a simple Tornado based
application on [cloudControl].


## The Example App Explained

### Get the App
Expand All @@ -25,7 +26,7 @@ file. It needs to be placed in the root directory of your repository. The
example app specifies only Tornado itself as a dependency. The one you cloned
as part of the example app looks like this:
~~~pip
tornado==2.4.1
tornado==4.2.1
~~~

### Process Type Definition
Expand Down Expand Up @@ -96,23 +97,25 @@ Push your code to the application's repository, which triggers the deployment
image build process:
~~~bash
$ cctrlapp APP_NAME/default push
Counting objects: 7, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (7/7), 1.01 KiB, done.
Total 7 (delta 0), reused 7 (delta 0)
Counting objects: 10, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (10/10), 1.22 KiB | 0 bytes/s, done.
Total 10 (delta 1), reused 0 (delta 0)

-----> Receiving push
-----> No runtime.txt provided; assuming python-2.7.3.
-----> Using Python runtime (python-2.7.3)
-----> No runtime.txt provided; assuming python-2.7.8.
-----> Preparing Python runtime (python-2.7.8)
-----> Installing Distribute (0.6.36)
-----> Installing Pip (1.3.1)
-----> Installing dependencies using Pip (1.3.1)
Downloading/unpacking tornado==2.4.1 (from -r requirements.txt (line 1))
Downloading/unpacking tornado==4.2.1 (from -r requirements.txt (line 1))
...
Successfully installed tornado
Successfully installed tornado backports.ssl-match-hostname certifi
Cleaning up...
-----> Building image
-----> Uploading image (25M)
-----> Uploading image (24.7 MB)

To ssh://[email protected]/repository.git
+ [new branch] master -> master
~~~
Expand Down