This tutorial walks you through the process of installing Nginx, MySQL, and PHP on a Linux Ubuntu 18.04 server.
How to Host a Website on AWS Lightsail
This tutorial will show you how to host your website on AWS Lightsail, which is the easiest way to host a site on AWS.
How to install Django on a CentOS 7 VPS or Dedicated Server
When building a website, similar components are required, and you do not have to reinvent the wheel every time you build a new website. Django is the tool you require for this.
In this article, various methods of installing Django are covered and how to create your first project.
Spe...
How to Get Started Coding in Python
Python is an easy-to-learn programming language that's has a philosophy that includes, "readability counts," making Python a good choice as a first programming language.
Most programming languages encourage indentation as a best practice to help readers identify blocks of code. Python insists on ...
Getting Started with the Flask Micro Web Framework
Flask is an extensible microframework, meaning it comes with a small set of core features needed to create a web application, supporting extensions to extend Flask when required. For example, Flask doesn’t have a database layer, making a database decision for you. Instead, if you need a database for...