Using django as framework , to build full stack projects.
Django uses mvt method for doing all the tasks.
M- model - database,
v- view - business logic,
T- Template - frontend - html css,
Django is a open source web framework.
- It is written in python
- It follows the model-view-template architecture pattern.
- It is maintained by Django softwares
- Fast
- fully loaded
- Security
- Scalability
django-admin startproject newproject
#here newproject is our folder or project name , so we can write any name
cd newproject
python manage.py startapp admins
#here admins is our application name , so we can name it anything but admins is a very good name
python manage.py runserver
@@above commands are the basic commands which we must have to do when creating aproject@@
@@runserver is to check that the created project is running or not@@