You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<metaname="description" content="Web application deployment involves packaging up your app and putting it in a product environment. Learn more about deployment on Full Stack Python.">
9
+
<metaname="description" content="Web application deployment involves packaging and running your app on a server. Learn more about deployments on Full Stack Python.">
Copy file name to clipboardExpand all lines: source/content/pages/07-web-app-deployment/01-deployment.markdown
+17-22Lines changed: 17 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ title: Deployment
2
2
category: page
3
3
slug: deployment
4
4
sort-order: 0701
5
-
meta: Web application deployment involves packaging up your app and putting it in a product environment. Learn more about deployment on Full Stack Python.
5
+
meta: Web application deployment involves packaging and running your app on a server. Learn more about deployments on Full Stack Python.
6
6
7
7
8
8
# Deployment
@@ -69,24 +69,19 @@ guide as they are considered advanced deployment techniques.
69
69
70
70
71
71
## Deployment learning checklist
72
-
<iclass="fa fa-check-square-o"></i>
73
-
If you're tight on time look at the
74
-
[platform-as-a-service (PaaS)](/platform-as-a-service.html) options. You can
75
-
deploy a low traffic project web app for free or low cost. You won't have to
76
-
worry about setting up the operating system and web server compared to going
77
-
the traditional server route. In theory you should be able to get your
78
-
application live on the web sooner with PaaS hosting.
79
-
80
-
<iclass="fa fa-check-square-o"></i>
81
-
[Traditional server options](/servers.html) are your best bet for learning
82
-
how the entire Python web stack works. You'll often save money with a virtual
83
-
private server instead of a platform-as-a-service as you scale up.
84
-
85
-
<iclass="fa fa-check-square-o"></i>
86
-
Read about servers, [operating systems](/operating-systems.html),
87
-
[web servers](/web-servers.html) and [WSGI servers](/wsgi-servers.html) to get
88
-
a broad picture of what components need to be set up to run a Python web
89
-
application.
90
-
91
-
92
-
### How would you like to deploy your web app?
72
+
1. If you're tight on time look at the
73
+
[platform-as-a-service (PaaS)](/platform-as-a-service.html) options. You
74
+
can deploy a low traffic project web app for free or low cost. You won't
75
+
have to worry about setting up the operating system and web server
76
+
compared to going the traditional server route. In theory you should be
77
+
able to get your application live on the web sooner with PaaS hosting.
78
+
79
+
1.[Traditional server options](/servers.html) are your best bet for learning
80
+
how the entire Python web stack works. You'll often save money with a
81
+
virtual private server instead of a platform-as-a-service as you scale up.
82
+
83
+
1. Read about servers, [operating systems](/operating-systems.html),
84
+
[web servers](/web-servers.html) and [WSGI servers](/wsgi-servers.html)
85
+
to get a broad picture of what components need to be set up to run a
0 commit comments