In the previous topic, we have installed Django successfully. Now, we will learn step by step process to create a Django application.
To create a Django project, we can use the following command. projectname is the name of Django application.
$ django-admin startproject projectname
Here, we are creating a project djangpapp in the current directory.
$ django-admin startproject djangpapp
Now, move to the project by changing the directory. The Directory can be changed by using the following command.
cd djangpapp
To see all the files and subfolders of django project, we can use tree command to view the tree structure of the application. This is a utility command, if it is not present, can be downloaded via apt-get install tree command.
A Django project contains the following packages and files. The outer directory is just a container for the application. We can rename it further.
Initially, this project is a default draft which contains all the required files and folders.
Django project has a built-in development server which is used to run application instantly without any external web server. It means we don't need of Apache or another web server to run the application in development mode.
To run the application, we can use the following command.
$ python3 manage.py runserver
Look server has started and can be accessed at localhost with port 8000. Let's access it using the browser, it looks like the below.
The application is running successfully. Now, we can customize it according to our requirement and can develop a customized web application.