codewithmuh / django-aws-ecs-fargate

This GitHub repository offers a streamlined solution for deploying your production-grade application on AWS ECS Fargate seamlessly integrated with essential AWS services such as RDS, S3, Load Balancers, and AWS ECR. Simplify your deployment process and leverage the power of AWS infrastructure with this comprehensive repository.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deploy Django Application on AWS ECS Fargate

1. Clone Repository


git clone https://github.com/codewithmuh/django-aws-ecs-fargate.git

2. Setup Two Options

  1. Local Setup
  2. Deploy on AWS ECS Fargate

1. Quick Local Setup

  1. Make sure you Docker desktop or docker daemon is running . you can install docker from office website.

  2. Run this command to start project running locally.


docker compose -f "build-process/aws-ecs-fargate/docker-compose-django-backend.yml" up -d --build

2. Deploy on AWS ECS Fargate

Step 1: Configure AWS CLI with a Profile Name

Ensure that you have AWS CLI installed. If not, download and install it from the official AWS CLI website.

Run the following command and replace YOUR_AWS_PROFILE_NAME with your desired AWS CLI profile name:

aws configure --profile YOUR_AWS_PROFILE_NAME

Replace YOUR_AWS_PROFILE_NAME with the desired name for your AWS CLI profile.

Input AWS Access Key ID: Enter your AWS Access Key ID when prompted.

Input AWS Secret Access Key: Enter your AWS Secret Access Key when prompted.

Default Region: Specify the default AWS Region you want to use for this profile.

  1. Open deploy-prod.sh file and make chnage, Replace YOUR_AWS_PROFILE_NAME, YOUR_REGION_NAME, YOUR_ACCOUNT_ID, YOUR_ECR_REPO_NAME, YOUR_CLUSTER_NAME, YOUR_SERVICE_NAME

  2. Then Run this command, it will build eocker image, and push image to ecr, It will also update ecs service


build-process/aws-ecs-fargate/deploy-prod.sh

About

This GitHub repository offers a streamlined solution for deploying your production-grade application on AWS ECS Fargate seamlessly integrated with essential AWS services such as RDS, S3, Load Balancers, and AWS ECR. Simplify your deployment process and leverage the power of AWS infrastructure with this comprehensive repository.

License:MIT License


Languages

Language:Python 71.2%Language:Shell 16.2%Language:Dockerfile 12.6%