Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django Coding Style
Please follow these coding standards when writing code for inclusion in Django. -
Awesome Django
A curated list of awesome Django apps, projects and resources. -
Lessons Learned Architecting Realtime Applications | Lincoln Loop
-
Django push: Using Server-Sent Events and WebSocket with Django | Blog | Curella.org
-
Token-based authentication with Django and React
This tutorial will show you how to create a simple React app that uses Django Rest Framework’s token authentication to grant or deny users access to certain ... -
List Of Open Source Web Apps, Alternative to Paid Solutions
-
Django Support - Python — Google Cloud Platform
Alternate development database and settings In an ideal setup, you would use an alternate database during development to avoid corrupting your production data while working on your project. You could create another database on your Google Cloud SQL instance for this, or you can even use a local MySQL database instead. There are a number of ways you can enable this type of switching between project settings. Here, we will show how to do it using settings.py. In the project switching scenario we illustrate here, use the: standard django.db.backends.mysql when running in production and accessing a production Google Cloud SQL instance. standard django.db.backends.mysql when running on a developer workstation and accessing a production Cloud SQL instance using IP address. In this case, you first need to configure your Cloud SQL instance to allow IP connection from your developer workstation. The configuration is the same as using command line tool. standard django.db.backends.mysql when running on a developer workstation and accessing a local MySQL instance. In this case, the application uses the system MySQLdb driver. -
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
channels -
Yosai
-
GitHub - pythonanywhere/dirigible-spreadsheet: Dirigible, the Pythonic spreadsheet in your browser
Dirigible, the web-based Pythonic Spreadsheet This is the source code from the end-of-lifed https://www.projectdirigible.com project, preserved for posterity and the curious -
Unlimited Blabs — Introducing Orchestra
"digital labor is a sociotechnical concern" -
Things to know (best practices and “issues”) READ IT !!! — uWSGI 2.0 documentation
By default uWSGI allocates a very small buffer (4096 bytes) for the headers of each request. If you start receiving “invalid request block size” in your logs, it could mean you need a bigger buffer. Increase it (up to 65535) with the buffer-size option. Note If you receive ‘21573’ as the request block size in your logs, it could mean you are using the HTTP protocol to speak with an instance speaking the uwsgi protocol. Don’t do this. -
Django models | Django Girls Tutorial
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
New Course Roundup: HTTP, Django, CSS & Android - Treehouse Blog
Favorited tweet: New Course Roundup: #HTTP, #Django, #CSS & #Android: https://t.co/23rWkeEM2O pic.twitter.com/D3gHLc3V1Y — Treehouse (@treehouse) March 26, 2016 -
Sponsored: 64% off Code Black Drone with HD Camera
Our #1 Best-Selling Drone--Meet the Dark Night of the Sky! -
Deployment Diagram - Django with Docker
Deployment Diagram showing similarities and differences between development and production environments in Django projects using Docker. -
How To Use Elasticsearch With Python and Django ( Part 1 )
let us make a Django app with Elasticsearch-based search integrated. -
django-controlcenter
It's like having all your admin changelists in one place with charts and whistles. -
wger
- Self hosted FLOSS fitness/workout and weight tracker written with Django -
Using Webpack transparently with Django + hot reloading React components as a bonus - Owais Lone
If you don’t already know webpack, you’ve some catching up to do. Webpack is a module bundler that bundles javascript and other assets for the browser. It works really well for applications and javas -
How To Use Elasticsearch With Python and Django ( Part 1 ) - Qbox
-
DiskCache Tutorial — DiskCache 1.6.3 documentation
disk-based replacement for defective default django caching -
Using Finite States Machines in Django User-centric applications – AlgoTech Solutions
-
Continuous Integration - Full Stack Python
The only minor downside to using CI is that it takes some initial time by a developer to set up and then there is some ongoing maintainence if a project is broken into multiple parts, such as going from a monolith architecture to microservices.