Skip to content

Commit d8f0b2e

Browse files
committed
adding django channels resource
1 parent 816b6e2 commit d8f0b2e

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

all.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1762,6 +1762,13 @@ <h2>Django migrations</h2>
17621762
are now all available to read.</p>
17631763
</li>
17641764
<li>
1765+
<p>Channels are a new mechanism in Django 1.9 (as a standalone app, later
1766+
for incorporation into the core framework) for real-time full-duplex
1767+
communication between the browser and the server based on
1768+
<a href="/websockets.html">WebSockets</a>. This
1769+
<a href="https://blog.heroku.com/archives/2016/3/17/in_deep_with_django_channels_the_future_of_real_time_apps_in_django">tutorial shows how to get started with Django Channels in your project</a>.</p>
1770+
</li>
1771+
<li>
17651772
<p><a href="http://pankrat.github.io/2015/django-migrations-without-downtimes/">Django migrations without downtimes</a>
17661773
shows one potential way of performing on-line schema migrations with
17671774
Django.</p>

django.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,13 @@ <h2>Django migrations</h2>
203203
are now all available to read.</p>
204204
</li>
205205
<li>
206+
<p>Channels are a new mechanism in Django 1.9 (as a standalone app, later
207+
for incorporation into the core framework) for real-time full-duplex
208+
communication between the browser and the server based on
209+
<a href="/websockets.html">WebSockets</a>. This
210+
<a href="https://blog.heroku.com/archives/2016/3/17/in_deep_with_django_channels_the_future_of_real_time_apps_in_django">tutorial shows how to get started with Django Channels in your project</a>.</p>
211+
</li>
212+
<li>
206213
<p><a href="http://pankrat.github.io/2015/django-migrations-without-downtimes/">Django migrations without downtimes</a>
207214
shows one potential way of performing on-line schema migrations with
208215
Django.</p>

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>2016-03-16T08:13:11Z</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>2016-03-17T15:39:57Z</updated></feed>

source/content/pages/04-web-development/03-django.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,17 @@ for Django and web development on the [best Python videos](/best-python-videos.h
169169
[part 4](http://andrewsforge.com/article/upgrading-django-to-17/part-4-upgrade-strategies/)
170170
are now all available to read.
171171

172+
* Channels are a new mechanism in Django 1.9 (as a standalone app, later
173+
for incorporation into the core framework) for real-time full-duplex
174+
communication between the browser and the server based on
175+
[WebSockets](/websockets.html). This
176+
[tutorial shows how to get started with Django Channels in your project](https://blog.heroku.com/archives/2016/3/17/in_deep_with_django_channels_the_future_of_real_time_apps_in_django).
177+
172178
* [Django migrations without downtimes](http://pankrat.github.io/2015/django-migrations-without-downtimes/)
173179
shows one potential way of performing on-line schema migrations with
174180
Django.
175181

182+
176183
## Django testing
177184
* [Integrating Front End Tools with Django](https://lincolnloop.com/blog/integrating-front-end-tools-your-django-project/)
178185
is a good post to read for figuring out how to use [Gulp](http://gulpjs.com/)

0 commit comments

Comments
 (0)