Skip to content

Commit fab7386

Browse files
committed
updating deployment page with checklist
1 parent 33edde4 commit fab7386

File tree

4 files changed

+33
-52
lines changed

4 files changed

+33
-52
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-04-28T16:39:49Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-04-28T16:52:10Z</updated></feed>

platform-as-a-service.html

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -112,33 +112,41 @@ <h2>Platform-as-a-service resources</h2>
112112
</li>
113113
</ul>
114114
<h3>Do you want to use a PaaS or deploy to a traditional server?</h3>
115-
<div class="row">
116-
<div class="col-md-4">
115+
<div class="row">
116+
<div class="col-md-3">
117117
<div class="well select-next">
118-
<a href="/servers.html" class="btn btn-success btn-full"><i class="fa fa-sort-amount-asc fa-inverse fa-2x"></i></a>
118+
<a href="/wsgi-servers.html" class="btn btn-success btn-full"><i class="fa fa-play fa-inverse fa-2x"></i></a>
119119
<p class="under-btn">
120-
Show me options for bare metal, virtualized servers, and
121-
infrastructure-as-a-service.
120+
What WSGI server should I use to run Python code?
122121
</p>
123122
</div>
124123
</div>
125-
<div class="col-md-4">
124+
<div class="col-md-3">
126125
<div class="well select-next">
127-
<a href="/wsgi-servers.html" class="btn btn-success btn-full"><i class="fa fa-play fa-inverse fa-2x"></i></a>
126+
<a href="/databases.html" class="btn btn-success btn-full"><i class="fa fa-hdd-o fa-2x"></i></a>
127+
</a>
128+
<p class="under-btn">
129+
How do I set up a database for use with my app?
130+
</p>
131+
</div>
132+
</div>
133+
<div class="col-md-3">
134+
<div class="well select-next">
135+
<a href="/application-dependencies.html" class="btn btn-success btn-full"><i class="fa fa-archive fa-inverse fa-2x"></i></a>
128136
<p class="under-btn">
129-
How do I execute Python code on a PaaS?
137+
How can I install the libraries my app depends upon?
130138
</p>
131139
</div>
132140
</div>
133-
<div class="col-md-4">
141+
<div class="col-md-3">
134142
<div class="well select-next">
135-
<a href="/web-frameworks.html" class="btn btn-success btn-full"><i class="fa fa-code fa-inverse fa-2x"></i></a>
143+
<a href="/static-content.html" class="btn btn-success btn-full"><i class="fa fa-spinner fa-inverse fa-2x"></i></a>
136144
<p class="under-btn">
137-
I'm not yet ready to deploy. Show me web frameworks to use.
145+
My PaaS says I should use a CDN to serve static content. How?
138146
</p>
139147
</div>
140148
</div>
141-
</div> <style type="text/css">
149+
</div> <style type="text/css">
142150
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
143151
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
144152
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

source/content/pages/03-deployment/0309-platform-as-a-service.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Platform-as-a-service
22
category: page
33
slug: platform-as-a-service
44
sort-order: 035
5-
choice1url:
6-
choice1icon:
7-
choice1text:
8-
choice2url:
9-
choice2icon:
10-
choice2text:
11-
choice3url:
12-
choice3icon:
13-
choice3text:
14-
choice4url:
15-
choice4icon:
16-
choice4text:
5+
choice1url: /wsgi-servers.html
6+
choice1icon: fa-play fa-inverse
7+
choice1text: What WSGI server should I use to run Python code?
8+
choice2url: /databases.html
9+
choice2icon: fa-hdd-o
10+
choice2text: How do I set up a database for use with my app?
11+
choice3url: /application-dependencies.html
12+
choice3icon: fa-archive fa-inverse
13+
choice3text: How can I install the libraries my app depends upon?
14+
choice4url: /static-content.html
15+
choice4icon: fa-spinner fa-inverse
16+
choice4text: My PaaS says I should use a CDN to serve static content. How?
1717

1818

1919
# Platform-as-a-service

source/theme/templates/chapters/platform-as-a-service.html

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)