Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
The boring technology behind a one-person Internet company
The tech stack a one-person company. -
Django for newborn babies
https://news.ycombinator.com/item?id=21163873 -
Django for newborn babies - DEV Community 👩💻👨💻
-
Mini-Django - Single-file Django project for instant gratification
-
How To Set Up Django with Postgres, Nginx, and Gunicorn on Ubuntu 18.04 | DigitalOcean
Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure -
When and how to use Django CreateView
-
Tango With Django… by Leif Azzopardi et al. [PDF/iPad/Kindle]
-
Django Class-Based-View Inspector -- Classy CBV
-
Django for Beginners - Complete Tutorial for Django 2.2
-
Setting Up Server Side Rendering with React, Redux, and Django
-
Porting Datasette to ASGI, and Turtles all the way down
-
Django 2 by Example Book
-
django 1.7 migrate gets error "table already exists" - Stack Overflow
python manage.py migrate --fake -
SilverStrike
Personal finance application written in Django -
Periodic Tasks — Celery 4.3.0 documentation
celery beat is a scheduler; It kicks off tasks at regular intervals, that are then executed by available worker nodes in the cluster. By default the entries are taken from the beat_schedule setting, but custom stores can also be used, like storing the entries in a SQL database. You have to ensure only a single scheduler is running for a schedule at a time, otherwise you’d end up with duplicate tasks. Using a centralized approach means the schedule doesn’t have to be synchronized, and the service can operate without using locks. -
Homepage | Celery: Distributed Task Queue
Celery is an asynchronous task queue/job queue based on distributed message passing.It is focused on real-time operation, but supports scheduling as well. The execution units, called tasks, are executed concurrently on a single or more worker servers using multiprocessing, Eventlet,or gevent. Tasks can execute asynchronously (in the background) or synchronously (wait until ready). Celery is used in production systems to process millions of tasks a day. -
The boring technology behind a one-person Internet company
Listen Notes is a podcast search engine and database. The technology behind Listen Notes is actually very very boring. No AI, no deep learning, no blockchain. “Any man who must say I am using AI is not using True AI” :) After reading this post, you should be able to replicate what I build for Listen Notes or easily do something similar. You don’t need to hire a lot of engineers. Remember, when Instagram raised $57.5M and got acquired by Facebook for $1B, they had only 13 employees — not all of them were engineers. The Instagram story happened in early 2012. It’s 2019 now, it’s more possible than ever to build something meaningful with a tiny engineering team — even one person. -
Introduction — Django Admin Cookbook 2.0 documentation
-
Recommended Django Project Layout
-
Django: Can I build a model upon local files instead of a real database? - Stack Overflow
-
python - Django: Display contents of txt file on the website - Stack Overflow
-
Logging | Django documentation | Django
-
Getting Started Quickly With Django Logging | Scalyr
Django is one of the most popular Python web application frameworks. In this article, you'll learn how to start logging with Django right away. -
saltdash/_logging.py at master · lincolnloop/saltdash
A read-only dashboard for Salt jobs. Contribute to lincolnloop/saltdash development by creating an account on GitHub. -
Django Logging, The Right Way | Lincoln Loop