Django for beginners
Django is a backend python-based web framework which is used to create web applications.
So, to start any django app you just need to have python installed on your system.
Next thing you should do is that just open your terminal or cmd and run "pip install django" and guess what django is installed on your system.
You can check it by simply running "pip list" on your terminal or cmd.
After the installation, let's create a django application.
For that, just run the command "django-admin startproject [project_name]".
To run our server, you need to change the directory first by running the command "cd [project_name]".
Finally, we just need to run "python manage.py runserver".
Now, you can open your browser and on the port 8000 you can see our first django web application is running successfully.