Creating an application in Django
Let’s create your first Django application. I am going to show you how to create a blog App. From your project’s root directory, run the following command: python3 manage.py startapp … Read More
Let’s create your first Django application. I am going to show you how to create a blog App. From your project’s root directory, run the following command: python3 manage.py startapp … Read More
Let’s open the settings.py file and take a look at the configuration of our project. DEBUG is a boolean that turns on/off the debug mode of the … Read More
If you have already installed Django, you can skip and jump directly to Creating your first project. If you haven’t installed Django yet, here is a quick guide to … Read More
Before you Write and run Python code, you need to make sure the Python interpreter is on your computer. Let’s check your computer for Python 3. Open up a command-line … Read More
You can use the following command to remove old kernels. ## dnf repoquery set negative –latest-limit ## ## as how many old kernels you want keep ## dnf remove … Read More