DEV Community

Cover image for Unlock the Power of the Cloud: Deploy Your Django App on AWS EC2
Deniel Dave Natividad
Deniel Dave Natividad

Posted on

Unlock the Power of the Cloud: Deploy Your Django App on AWS EC2

You’re happily coding away on your Django Web App, and now you’re ready to deploy it in a production cloud environment. But the transition from local development to a robust, secure, and scalable production setup can be challenging. You want your app to be easily accessible to clients, have robust security for malicious actors all while hosted on a cloud provider with a reliable architecture that will give you peace of mind. While Django is good for handling all your Web App needs, moving from local to a production environment will certainly present new challenges.

AWS as a Cloud Service Provider

AWS is one of those cloud service providers. They certainly achieve all our checklists for moving on a production environment with their various services and global network of data centers. It offers the scalability to handle varying user demands, the security tools to protect user data, and the reliability needed for high availability. For developers looking to move from local to cloud, AWS provides the infrastructure and flexibility to make the transition smooth and sustainable.

Harboring the power of AWS EC2

AWS EC2 or Elastic Compute Cloud is a really practical and widely used service for hosting web apps, offering on-demand, scalable computing capacity. With EC2, you can minimize upfront hardware costs and focus on developing and deploying your application faster. Its flexibility in instance types and configurations allows you to scale resources as needed, making it an ideal choice for supporting a growing user base in a reliable and cost-effective manner.

AWS Elastic Compute Cloud offers a wide range of features that will help you deploy a future proof application.

  • Elasticity is one of its main features, that allows you to configure an Auto Scaling Groups (ASGs) to automatically adjust capacity in response to changing traffic loads, ensuring that your app performs reliably even during high traffic situations.
  • EC2 also prioritizes security with Security Groups and Virtual Private Clouds (VPCs), providing network-level protection and controlled access to your instances, which helps safeguard user data and sensitive app components.
  • For cost management, EC2’s flexible pricing model—spanning on-demand, reserved, and spot instances—lets you optimize costs based on your application’s needs, fitting various budget constraints.
  • Finally, EC2 integrates seamlessly with the broader AWS ecosystem, offering easy access to services like RDS for databases, S3 for storage, and IAM for access control, enabling a cohesive, scalable, and secure setup that covers all the essentials for production-ready Django deployments.

Launching an EC2 Instance

In the AWS Management Console, type EC2 in the search bar or locate it under the Services menu. Click on EC2 to open the EC2 Dashboard.

Image description

1. Launching the Instance

On the EC2 Dashboard, click the Launch Instance button to start the instance creation process.

Image description

2. Naming and Tagging Your Instance

Create a name for your instance.

Image description

3. Selecting an AMI (Amazon Machine Image)

AMIs are preconfigured templates for your instances, containing the operating system and software you want. Choose ‘Amazon Linux’.

Image description

4. Choosing an Instance Type

An instance type in Amazon EC2 defines the virtual hardware for your server, such as CPU, memory, storage, and network capacity. Different types are suited for different workloads.

  • Choose t2.micro for this one as it's affordable, Free Tier eligible, and offers on-demand usage where you only pay for what resources you use.

Image description

5. Configuring a Key Pair

Image description

For this time, lets not create a keypair. We will connect to the instance using the AWS console.

6. Configuring Networking

These are some minute networking details for your instance.

  • Network: The network defines the Virtual Private Cloud (VPC) where your instance will reside.
  • Subnet: A subnet is a segment of a VPC's IP address range.
  • Auto-assign Public IP: This setting automatically assigns a public IP address to your instance.

Image description

7. Configuring Security Groups

Security groups act as virtual firewalls for your Amazon EC2 instances. They control inbound and outbound traffic based on defined rules. Choose create security group and check allow SSH traffic. This allows us to connect to our instance later.

Image description

8. Configuring Storage

This will specify the storage options of your instance. Leave the option as it is. Here are the details you need to know:

  • 1x: This indicates that there is one volume attached as the root volume to the EC2 instance.
  • 8 GiB: This specifies the size of the root volume, which is 8 GiB (Gibibytes).
  • gp3: This indicates the type of storage volume. gp3 is a type of General Purpose SSD (Solid State Drive) that offers a balance of price and performance.

Image description

9. Reviewing and Launching

Review your configured instance. If everything looks correct, click launch instance.

Image description

10. Accessing the Instance

You will proceed to this page, just click the instance ID.

Image description

The instance will take time to initialize. It will usually take 2-3 minutes.

Image description


Django on a Git Repository

Now that you have your EC2 instance running, you can now deploy your Django application. We will clone it from a remote repository.

Link to remote repo

This remote repo is not made by me, all credits to the author. He also had a guide on how to deploy Django on EC2 in his README.md file. you can check it out. His guide is on Ubuntu, but we will be using Amazon Linux.

Deploying Django on EC2

Connecting to the instance

  • Click the instance ID to open the instance details. Then click Connect.

Image description

  • Lets choose EC2 Instance Connect as the connection method and click Connect. This is due to the fact that we did not create a keypair and it is much easier to connect using this method.

Image description

Image description

Configuring Django dependencies on the instance

  • Update the package list system
sudo yum update -y
Enter fullscreen mode Exit fullscreen mode

Image description

  • Lets install git
sudo yum install git 
Enter fullscreen mode Exit fullscreen mode

Image description

  • Clone the repository
git clone https://github.com/euxia/django-on-ec2
Enter fullscreen mode Exit fullscreen mode

Image description

  • Install Python3 and Django
sudo yum install python3-pip -y
Enter fullscreen mode Exit fullscreen mode

Image description

pip install django
Enter fullscreen mode Exit fullscreen mode

Image description


Go to the repository and run the Django server

  • Go to the repository
ls
Enter fullscreen mode Exit fullscreen mode
cd django-on-ec2
Enter fullscreen mode Exit fullscreen mode

Image description

  • Lets create a migration. This prepares the changes in your models to be applied to the database
python3 manage.py makemigrations
Enter fullscreen mode Exit fullscreen mode
python3 manage.py migrate
Enter fullscreen mode Exit fullscreen mode

Image description

Image description

  • Lets create a superuser. This is the admin user for the Django application.
python3 manage.py createsuperuser
Enter fullscreen mode Exit fullscreen mode

Image description

Tip: You can skip the email part if you want.

  • Run the Django server
python3 manage.py runserver
Enter fullscreen mode Exit fullscreen mode

Image description

As you can see, the server is running on a local IP address. But we can't access it from the internet as it is running on a production server. We will need to run it on a public IP address of the EC2 instance itself.


Running Django on a public IP address

  • Stop the server by pressing Ctrl + C

  • Run the server on a public IP address

python3 manage.py runserver 0.0.0.0:8000
Enter fullscreen mode Exit fullscreen mode

Image description

This will run the server on a public IP address accessible from everywhere, on all network interfaces.

  • Find the public IP address of the instance then add :8000 to the end of the IP address.

Image description

Search the public IP address on your browser and you will see the Django application still not running.

Image description


Allowing traffic on port 8000

  • Go to the EC2 instance, scroll down, and find the security group. Click on the security group ID.

Image description

  • Click on the Inbound rules tab and click Edit inbound rules.

Image description

Click Add rule and add the following details:

  • Type: Custom TCP Rule
  • Protocol: TCP
  • Port Range: 8000
  • Source: Anywhere

Image description

  • Click Save rules.

  • Go back to the browser and refresh the page. You will see the Django application running.

Image description


Deploying a Django web app on AWS EC2 illustrates the power and versatility of cloud infrastructure—not just for Django, but for a wide variety of web frameworks and languages. The steps involved, such as configuring inbound rules to allow specific port permissions and setting up security groups, can be applied equally to applications built with Flask, Node.js, and even frontend frameworks like Next.js.

Top comments (1)

Collapse
 
0xshr00msz profile image
Y

Sarap!