Latest Blog Posts

post cover image
How to Store Django Static and Media Files on AWS S3: A Step-by-Step Guide

Dec. 5, 2024, 8:54 a.m. | By: Charles U 67 0 0

IntroductionManaging static files like CSS and JavaScript, as well as media uploads such as user photos, can quickly become a headache as your Django app grows. Storing these files locally ...
post cover image
Connecting to an Amazon EC2 Instance Using PuTTY

Nov. 29, 2024, 10:14 a.m. | By: Charles U 131 0 0

 IntroductionThis guide will walk you through the steps of connecting to your Amazon Elastic Compute Cloud (EC2) instance using PuTTY, a free SSH and telnet client. This is a common ...
post cover image
Deploying A Django Application using Gunicorn, Supervisor and NGINX on AWS EC2

Nov. 22, 2024, 9:10 a.m. | By: Charles U 181 1 0

IntroductionIn this guide, we'll delve into the process of deploying a Django application on an AWS EC2 instance, leveraging the power of Gunicorn, Supervisor, and Nginx. This combination offers a ...
post cover image
Encrypting a Django Rest Framework Response

Nov. 19, 2024, 2:47 p.m. | By: Charles U 172 0 0

IntroductionEncryption is the process data goes through to get transformed from a readable format(plaintext) to an unreadable format(ciphertext). After encryption, the ciphertext appears to be unreadable random data and anyone ...