Skip to content

Commit 552e4a2

Browse files
committed
trying the checklist concept on a few pages
1 parent 4f066b8 commit 552e4a2

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
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-27T10:47:01Z</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-27T11:43:38Z</updated></feed>

source/content/pages/02-web-frameworks/0201-web-frameworks.markdown

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ years while building dynamic web applications. Frameworks make it easier
2727
to reuse code for common HTTP operations and to structure your code so that
2828
it is maintainable.
2929

30+
## Web frameworks checklist
31+
[ ] Choose a major web framework ([Django](/django.html) or
32+
[Flask](/flask.html) recommended) and stick with it
33+
34+
[ ] Walk through a detailed tutorial found under the resources links to
35+
understand how to create a web application with the framework
36+
37+
[ ] Study open source examples built with your framework of choice so you can
38+
take parts of those projects and use the code in your application
39+
40+
[ ] Build the first simple iteration of your web application then go to
41+
the [deployment](/deployment.html) section to make it accessible on the
42+
web
43+
3044

3145
## Common web framework functionality
3246
Frameworks provide functionality in their code or through extensions to

web-frameworks.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@ <h2>Why are web frameworks necessary?</h2>
5252
years while building dynamic web applications. Frameworks make it easier
5353
to reuse code for common HTTP operations and to structure your code so that
5454
it is maintainable.</p>
55+
<h2>Web frameworks checklist</h2>
56+
<p>[ ] Choose a major web framework (<a href="/django.html">Django</a> or
57+
<a href="/flask.html">Flask</a> recommended) and stick with it</p>
58+
<p>[ ] Walk through a detailed tutorial found under the resources links to
59+
understand how to create a web application with the framework</p>
60+
<p>[ ] Study open source examples built with your framework of choice so you can
61+
take parts of those projects and use the code in your application</p>
62+
<p>[ ] Build the first simple iteration of your web application then go to
63+
the <a href="/deployment.html">deployment</a> section to make it accessible on the
64+
web</p>
5565
<h2>Common web framework functionality</h2>
5666
<p>Frameworks provide functionality in their code or through extensions to
5767
perform common operations required to run web applications. These common

0 commit comments

Comments
 (0)