Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 600 Bytes

deploy_django_backend_on_ubuntu.md

File metadata and controls

18 lines (11 loc) · 600 Bytes

Deploy on Ubuntu

Set up Django with PostgreSQL, Nginx, and Gunicorn is covered here. And also mentioned that here Python3 is used.

First install the packages from the Ubuntu Repositories.

sudo apt update
sudo apt install python3-venv python3-dev libpq-dev postgresql postgresql-contrib nginx curl

Here several packages could be already installed.

Reference