Everything you need to know about Django(Python) as a Beginner
As a newbie, forget all the noise and learn Django for backend web development (well do your research and see what is suitable for you).
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built ...
Read: https://akolade.hashnode.dev/everything-you-need-to-know-about-djangopython-as-a-beginner
As a newbie, forget all the noise and learn Django for backend web development (well do your research and see what is suitable for you).
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built ...
Read: https://akolade.hashnode.dev/everything-you-need-to-know-about-djangopython-as-a-beginner
Collaboration > Competition with the Open Source - DevRetro 2022
A petite crust of my development journey
I've always wanted to explore the tech field but was a bit confused should I start AI/ML or web dev or maybe app development? A couple of months ago, I was browsing YouTube when I came across a video about ope...
Read: https://saurabhdev.hashnode.dev/collaboration-competition-with-the-open-source-devretro-2022
A petite crust of my development journey
I've always wanted to explore the tech field but was a bit confused should I start AI/ML or web dev or maybe app development? A couple of months ago, I was browsing YouTube when I came across a video about ope...
Read: https://saurabhdev.hashnode.dev/collaboration-competition-with-the-open-source-devretro-2022
How We migrate a Joomla based website to a Django Backend with 90 Gb worth of data
Context
A few years ago while I was still running my Django Consultancy Agency, We worked with a client who built a website over the years with a Content Management System (CMS) named Joomla and he was facing some issues such as adding new features, ...
Read: https://blog.adonissimo.com/how-we-migrate-a-joomla-based-website-to-a-django-backend-with-90-gb-worth-of-data
Context
A few years ago while I was still running my Django Consultancy Agency, We worked with a client who built a website over the years with a Content Management System (CMS) named Joomla and he was facing some issues such as adding new features, ...
Read: https://blog.adonissimo.com/how-we-migrate-a-joomla-based-website-to-a-django-backend-with-90-gb-worth-of-data
Collaboration rather than Competition with the Open Source - DevRetro 2022
A petite crust of my development journey
I've always wanted to explore the tech field but was a bit confused should I start AI/ML or web dev or maybe app development? A couple of months ago, I was browsing YouTube when I came across a video about ope...
Read: https://saurabhdev.hashnode.dev/collaboration-rather-than-competition-with-the-open-source-devretro-2022
A petite crust of my development journey
I've always wanted to explore the tech field but was a bit confused should I start AI/ML or web dev or maybe app development? A couple of months ago, I was browsing YouTube when I came across a video about ope...
Read: https://saurabhdev.hashnode.dev/collaboration-rather-than-competition-with-the-open-source-devretro-2022
Using .gitignore in a Django project
A .gitignore is a file that specifies files and directories that git should ignore when adding files to the repository.
The .gitignore is usually placed in the root directory of the repository, and it applies to all subdirectories underneath it.
Some...
Read: https://allthingstechie.hashnode.dev/using-gitignore-in-a-django-project
A .gitignore is a file that specifies files and directories that git should ignore when adding files to the repository.
The .gitignore is usually placed in the root directory of the repository, and it applies to all subdirectories underneath it.
Some...
Read: https://allthingstechie.hashnode.dev/using-gitignore-in-a-django-project
Outreachy: Week five
I wish you all a happy and prosperous new year. I presume you had a relaxing holiday or a lot of fun. As for me, just like I predicted in my last article on my Outreachy internship with Wagtail, the holiday was a busy one for me.
Last week, I shared ...
Read: https://activuscode.hashnode.dev/outreachy-week-five
I wish you all a happy and prosperous new year. I presume you had a relaxing holiday or a lot of fun. As for me, just like I predicted in my last article on my Outreachy internship with Wagtail, the holiday was a busy one for me.
Last week, I shared ...
Read: https://activuscode.hashnode.dev/outreachy-week-five
Dockerize Your Django App in 5 Easy Steps: A Comprehensive Guide
Docker is a popular tool for packaging and deploying applications. It allows you to run your applications in a containerized environment, which can make it easier to manage dependencies, reduce conflicts, and improve the overall portability of your a...
Read: https://twarga.hashnode.dev/dockerize-your-django-app-in-5-easy-steps-a-comprehensive-guide
Docker is a popular tool for packaging and deploying applications. It allows you to run your applications in a containerized environment, which can make it easier to manage dependencies, reduce conflicts, and improve the overall portability of your a...
Read: https://twarga.hashnode.dev/dockerize-your-django-app-in-5-easy-steps-a-comprehensive-guide
Integrating Paystack payments in Django website
This article was originally published on dev.to and has been republished here with permission.
TABLE OF CONTENTS
Introduction
Prerequisites
Project Setup
Creating models
User registration and login
Implementing deposit view
Conclusion
Reference
In...
Read: https://phantom.hashnode.dev/integrating-paystack-payments-in-django-website-clclm543c001008k0hh78d55x
This article was originally published on dev.to and has been republished here with permission.
TABLE OF CONTENTS
Introduction
Prerequisites
Project Setup
Creating models
User registration and login
Implementing deposit view
Conclusion
Reference
In...
Read: https://phantom.hashnode.dev/integrating-paystack-payments-in-django-website-clclm543c001008k0hh78d55x
👍1
My Infrastructure as Code Rosetta Stone - Deploying the same web application on AWS ECS Fargate with CDK, Terraform and Pulumi
tl;dr
I wrote three infrastructure as code libraries for deploying containerized 3-tier web apps on AWS ECS Fargate using CDK, Terraform and Pulumi. This article will provide an overview of my experience working with these three IaC tools and will sh...
Read: https://briancaffey.hashnode.dev/my-infrastructure-as-code-rosetta-stone-deploying-the-same-web-application-on-aws-ecs-fargate-with-cdk-terraform-and-pulumi
tl;dr
I wrote three infrastructure as code libraries for deploying containerized 3-tier web apps on AWS ECS Fargate using CDK, Terraform and Pulumi. This article will provide an overview of my experience working with these three IaC tools and will sh...
Read: https://briancaffey.hashnode.dev/my-infrastructure-as-code-rosetta-stone-deploying-the-same-web-application-on-aws-ecs-fargate-with-cdk-terraform-and-pulumi
Django Form Validation
Introduction
In this article, I will show you how form validation works in Django. I will also show you how to write your own custom validators. Understanding how this process works is very important because most web applications use forms to grab in...
Read: https://harunacodes.com/django-form-validation
Introduction
In this article, I will show you how form validation works in Django. I will also show you how to write your own custom validators. Understanding how this process works is very important because most web applications use forms to grab in...
Read: https://harunacodes.com/django-form-validation
🔥1
Handling exceptions in Django from middleware
A problem that many Django programmers face is uncaught exceptions triggering a 500 HTTP response. Even when you think you have covered all cases, there might be some external package that raises something else than you expect.
One elegant way to cop...
Read: https://deepintodjango.com/handling-exceptions-in-django-from-middleware
A problem that many Django programmers face is uncaught exceptions triggering a 500 HTTP response. Even when you think you have covered all cases, there might be some external package that raises something else than you expect.
One elegant way to cop...
Read: https://deepintodjango.com/handling-exceptions-in-django-from-middleware
Handling exceptions in Django in the middleware
A problem that many Django programmers face is uncaught exceptions triggering a 500 HTTP response. Even when you think you have covered all cases, there might be some external package that raises something else than you expect.
Most people solve this...
Read: https://deepintodjango.com/handling-exceptions-in-django-in-the-middleware
A problem that many Django programmers face is uncaught exceptions triggering a 500 HTTP response. Even when you think you have covered all cases, there might be some external package that raises something else than you expect.
Most people solve this...
Read: https://deepintodjango.com/handling-exceptions-in-django-in-the-middleware
Starting A Django Project
To start a Django project, you will need to have Python and Django installed on your system. If you don't have them installed, you can install them using the following steps:
Install Python by downloading the latest stable release from the official w...
Read: https://favourtech.hashnode.dev/starting-a-django-project
To start a Django project, you will need to have Python and Django installed on your system. If you don't have them installed, you can install them using the following steps:
Install Python by downloading the latest stable release from the official w...
Read: https://favourtech.hashnode.dev/starting-a-django-project
🤯3
Why Virtualenv is Important for Django Development?
# Why Virtualenv is Important for Django Development
## Create a separate virtual environment for each project:
`Virtualenv` is a tool that allows you to create a separate Python environment for each `Django` project you work on. This can be particu...
Read: https://sarahthedeveloper.hashnode.dev/why-virtualenv-is-important
# Why Virtualenv is Important for Django Development
## Create a separate virtual environment for each project:
`Virtualenv` is a tool that allows you to create a separate Python environment for each `Django` project you work on. This can be particu...
Read: https://sarahthedeveloper.hashnode.dev/why-virtualenv-is-important
I had to integrate few React components in a Django View using jQuery: A Journey
A small journey into my Tech World filled with bizarre experiences. One such instance that comes to mind is when I had to make some enhancements to an existing UI that was written earlier. The older Tech Stack was Django-based SSR (using View Templat...
Read: https://theprodev.hashnode.dev/rendering-react-component-in-django-jquery-ui
A small journey into my Tech World filled with bizarre experiences. One such instance that comes to mind is when I had to make some enhancements to an existing UI that was written earlier. The older Tech Stack was Django-based SSR (using View Templat...
Read: https://theprodev.hashnode.dev/rendering-react-component-in-django-jquery-ui
Deploy Django App with AWS Elastic Beanstalk and AWS RDS Database
This blog post outlines the process for deploying a Django web app to the cloud using AWS Elastic Beanstalk. The application data is stored in a database that is also cloud-hosted using an AWS Relational Database Service (RDS) DB instance.
Objectives...
Read: https://fafacodes.hashnode.dev/deploy-django-app-with-aws-elastic-beanstalk-and-aws-rds-database
This blog post outlines the process for deploying a Django web app to the cloud using AWS Elastic Beanstalk. The application data is stored in a database that is also cloud-hosted using an AWS Relational Database Service (RDS) DB instance.
Objectives...
Read: https://fafacodes.hashnode.dev/deploy-django-app-with-aws-elastic-beanstalk-and-aws-rds-database
Deploy Django App with AWS Elastic Beanstalk and AWS RDS
This blog post outlines the process for deploying a Django web app to the cloud using AWS Elastic Beanstalk. The application data is stored in a database that is also cloud-hosted using an AWS Relational Database Service (RDS) DB instance.
Objectives...
Read: https://fafacodes.hashnode.dev/deploy-django-app-with-aws-elastic-beanstalk-and-aws-rds
This blog post outlines the process for deploying a Django web app to the cloud using AWS Elastic Beanstalk. The application data is stored in a database that is also cloud-hosted using an AWS Relational Database Service (RDS) DB instance.
Objectives...
Read: https://fafacodes.hashnode.dev/deploy-django-app-with-aws-elastic-beanstalk-and-aws-rds
Django: Views and URL Mapping
When I started learning Django, it took me a while to understand the concept of views and URLs mapping especially when you learn from random dudes on YouTube. one time your web app is correctly producing views for each request and the next it's produ...
Read: https://savviesammie.hashnode.dev/django-views-and-url-mapping
When I started learning Django, it took me a while to understand the concept of views and URLs mapping especially when you learn from random dudes on YouTube. one time your web app is correctly producing views for each request and the next it's produ...
Read: https://savviesammie.hashnode.dev/django-views-and-url-mapping
10 Amazing Books for A Django Developer 📚
As a Software Developer, you should always try to know more and more.one of the ways that you can easily learn from it, it's reading books.there are a lot of valuable books to help you out in this field and they can change your level "From Zero To He...
Read: https://amirhomayoon.hashnode.dev/10-amazing-books-for-a-django-developer
As a Software Developer, you should always try to know more and more.one of the ways that you can easily learn from it, it's reading books.there are a lot of valuable books to help you out in this field and they can change your level "From Zero To He...
Read: https://amirhomayoon.hashnode.dev/10-amazing-books-for-a-django-developer
Types of Errors in Django
While working with Django, we all have faced several types of errors. Let's have a quick look at some most common types of them.
P.S. There are many more types of them and the ones covered here are just the ones that I faced working with it till now....
Read: https://swap33377.hashnode.dev/types-of-errors-in-django
While working with Django, we all have faced several types of errors. Let's have a quick look at some most common types of them.
P.S. There are many more types of them and the ones covered here are just the ones that I faced working with it till now....
Read: https://swap33377.hashnode.dev/types-of-errors-in-django
How We implemented Audit in our SaaS Django Platform
Context: what is Audit?
A while back with my team when working on a project we needed to add some audit features on the platform to be able to trace what happened in the app and show it to the end users and use it also for customer support requests, ...
Read: https://blog.adonissimo.com/how-we-implemented-audit-in-our-saas-django-platform
Context: what is Audit?
A while back with my team when working on a project we needed to add some audit features on the platform to be able to trace what happened in the app and show it to the end users and use it also for customer support requests, ...
Read: https://blog.adonissimo.com/how-we-implemented-audit-in-our-saas-django-platform
👍1