Develop powerful Python web applications with a Django server and managed PostgreSQL database. When you launch this bundle you’ll deploy a Droplet pre-configured with Django and attached to a managed PostgreSQL database.
Package | Version | License |
---|---|---|
Django | 5.0 | Custom |
Nginx | 1.18.0 | Custom |
Certbot | 0.40.0 | Apache 2 |
Gunicorn | 20.0.4 | MIT |
Postgres | 12 | PostgreSQL |
Postfix | 3.4.10 | IBM Public |
Click the Deploy to DigitalOcean button to deploy this offering. If you aren’t logged in, this link will prompt you to log in with your DigitalOcean account.
After you’ve created a Droplet, you can navigate to its public IPv4 address to see the sample application live.
To learn how to make modifications or get your code onto your Droplet, here are the steps. You can also follow the sample application for the instructions.
Open a terminal on your computer to access your Droplet as the root user using the following command:
ssh root@your_droplet_public_ipv4
You will then be prompted to enter a password. If you created your Droplet with a root user password, enter this in the terminal. If you created your Droplet with an ssh key, enter the passphrase associated with your key.
Note the login message, it has important details for connecting to your Postgres database, among other things!
Clone your Django code onto the droplet, anywhere you like. Note: If you’re not using a source control, you can directly upload the files to your droplet using SFTP.
You can try to reuse this project, located in /home/django/django_project
, or start fresh in a new location and edit Gunicorn’s configuration to point to it at /etc/systemd/system/gunicorn.service
. You can also change how nginx is routing traffic by editing /etc/nginx/sites-enabled/default
.
cd
into the directory where your Django code lives, and install any dependencies. (For example, if you have a requirements.txt
file, run pip install -r requirements.txt
.)
That’s it! Whenever you make code changes, reload Gunicorn like so:
PID=$(systemctl show --value -p MainPID gunicorn.service) && kill -HUP $PID
The standard Django admin area is accessible at /admin
. The login and password are stored in the DJANGO_USER*
values you see when you call cat /root/.digitalocean_passwords
while logged in over SSH.
There’s a lot you’ll want to do to make sure you’re production-ready. Here are the popular things that people will do.
sudo ufw status
, and make any changes you need. By default, only SSH/SFTP (port 22), HTTP (port 80), and HTTPS (port 443) are open. You can also disable this firewall by calling sudo ufw disable
and use a DigitalOcean cloud firewall instead, if you like (they’re free).To access your DigitalOcean managed PostgreSQL database from your Droplet console, you need to use the psql
command in the terminal, providing the database connection details like hostname, port, username, and password which can be found in your DigitalOcean database settings; essentially, you’re connecting to the database remotely from your Droplet using the command line.
Key steps:
psql
command: Use the following command structure to connect:psql -h <database_hostname> -p <database_port> -U <database_username> -d <database_name>
-h: Database hostname
-p: Database port
-U: Database username
-d: Database name