Django App Deployment
Steps to Deploy Django
sudo apt updatesudo apt install nginx
sudo apt install python3-pip
sudo pip3 install gunicorn
sudo apt install certbot
sudo apt install python3-certbot-nginxgit clone https://github.com/<username>/<project-name>.git
cd <project-name>
pip3 install -r requirements.txtcd <project-folder>
gunicorn --workers 3 --bind unix:/tmp/gunicorn.sock <project-name>.wsgi:applicationLast updated