Skip to main content

How to Deploy Django Application in AWS EC2

In this tutorial, we are going to launch an EC2 instance and deploy a Django app. I am going to use nginx, gunicorn in this process.

  • Create an account in AWS and login to it
  • Choose EC2 services for deployment
  • Create a Key Pair
  • Create an Instance for application by
  • Open the Amazon EC2 console.
  • In the navigation bar at the top of the screen, the current region is displayed. Click the region’s name to select the region for the instance.
  • From the Amazon EC2 console dashboard, click Launch Instance.
  • In the Select an existing key pair or create a new key pair dialog box, you can choose an existing key pair, or create a new one.
  • you will find the complete source code here
  •  Deployment of Django in AWS EC2


Comments

Popular posts from this blog

Webscrapping using Python for Machine learning,Data Science

In this tutorial we are going to learn and discuss about how to perform web scrapping  using python Web scrapping:                  Web Scraping    is a technique employed to extract large amounts of data from websites whereby the data is extracted and saved to a local file in your computer or to aws s3 services in json format For web scrapping we will use the following libraries they are  Beautiful soup urllib Json for file storing you will find the complete source code here https://github.com/GanapathiAmbore/Webscrapping-using-python