Django

How to Use Python Virtual Environments on Ubuntu 24.04 — step-by-step Linux tutorial on Progressive Robot

How to Deploy a Django App with Gunicorn and Nginx on Ubuntu 24.04

Django is a high-level Python web framework with a batteries-included philosophy. This guide deploys a Django application in production on Ubuntu 24.04 LTS using Gunicorn as the WSGI server and Nginx as the reverse proxy. Tested and valid on: Ubuntu 24.04 LTS Prerequisites Ubuntu 24.04 LTS server Python 3.12 and pip installed Nginx installed A […]

Read more
How to Set Up a Next.js 15 Application on Ubuntu 26.04 — step-by-step Linux tutorial on Progressive Robot

How to Deploy a Django App with Gunicorn and Nginx on Ubuntu 26.04

Django is a high-level Python web framework that encourages rapid development and clean design. Gunicorn is a Python WSGI HTTP server used to run Django in production. Nginx acts as a reverse proxy, serving static files efficiently. This guide deploys a Django application on Ubuntu 26.04 LTS. Tested and valid on: Ubuntu 26.04 LTS Prerequisites […]

Read more
Jumping Into Django Models — step-by-step Python tutorial on Progressive Robot

Jumping Into Django Models

Create simple and clean Django Models — learn how to use magic methods, add your own methods, create relationships between Models, and perform queries and aggregations against your Models.

Read more
CHAT