Django Tutorial #10: Deployment
Finally, it’s time to deploy our project. Instead of doing everything manually, we use a server management panel, which is much more beginner-friendly.Setup a VPSFirst, let’s setup a new VPS b…
Enter your email below to get access to web development courses
Laravel is a very powerful framework that follows the MVC structure. It is designed for web developers who need a simple, elegant yet powerful toolkit to build a fully-featured website.
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. It aims to ease the construction of complex web applications.
Vue.js is an open-source front end JavaScript framework for building user interfaces and single-page applications. It lets you extend HTML with HTML attributes called directives.
Front-end web development is the practice of converting data to a graphical interface, through the use of HTML, CSS, and JavaScript, so that users can view and interact with that data.
In this tutorial, we’ll start with HTML and CSS, which is the most basic building block of a web page. Then, we’ll go through the basics of JavaScript, and finally, we’ll talk about Vue.js, a very popular frontend framework.
Finally, it’s time to deploy our project. Instead of doing everything manually, we use a server management panel, which is much more beginner-friendly.Setup a VPSFirst, let’s setup a new VPS b…
In this post, we’ll create some optional features for our website. If you are not interested, just skip to the end of this post and start preparing for deployment.PaginationWhen we add m…
The search function is a fundamental feature for almost all websites, and in this article, we’ll talk about how to implement basic search in our Django project.A search function consists of thre…
In this article, we’ll start by creating the URL configurations for our website.URL ConfigurationsDjango_31_Tutorial/urls.pyfrom django.contrib import admin from django.urls import path, i…
Design Database StructureFor a simple blogging system, we need at least 4 database tables: Users, Categories, Tags, and Posts. If you want other functions for your blog, commen…
Now, it is time for us to dive into our project. To get familiar with everything, we start by creating only the home page.Since this is the first time that we work with all the components we talke…