Manvendra Rajpoot

Welcome to my blog. Here you’ll find a lot of cool information about a lot of cool stuff.

Django Conquered: What is Django?

What is Django? Django is a web development framework for Python. It is one of the most popular full-stack web development framework for Python. It is a production grade framework with tons of batteries included in it. So, if you master it, you’ll be able to use it in your own projects and become job ready as well. Django Batteries Included “Django batteries included” refers to the philosophy of the Django web framework, emphasizing a comprehensive and feature-rich package that comes with a variety of built-in tools and functionalities....

January 24, 2024 · 3 min · Manvendra Rajpoot

Django Conquered: Introduction

What is Django Conquered? Introducing my first ever series on this blog. I always wanted to have a blog of my blog and I wanted to provide a way to help others in any way possible so I thought why not I just start a blog of my own and share my knowledge with others. Why Django Conquered? Django is a full-stack production ready framework and it’s one of the most powerful framework in existence with tons of batteries included in it....

January 24, 2024 · 1 min · Manvendra Rajpoot

How to connect PostgreSQL database with Django?

Setting up PostgreSQL Database and User In this blog post, we’ll walk through the steps to set up a PostgreSQL database and user with the following commands. Step 1: Create a PostgreSQL Database CREATE DATABASE yourdbname; This command creates a new PostgreSQL database named yourdbname. Step 2: Create a PostgreSQL User CREATE USER yourdbuser WITH PASSWORD 'yourdbpassword'; This command creates a new PostgreSQL user named yourdbuser with the specified password....

January 21, 2024 · 2 min · Manvendra Rajpoot