This project aims to understand the working of django and its make life easy to develop website.
-
Create Folder for an application
-
Install Django in python dev environment.
pip3 install django -
Start the project with the help of Django
django-admin startproject auto_password_generator -
Open the created project using djnago
cd auto_password_generator -
Start the application using Django.
python3 manage.py startapp pswd_generator -
After entering paths in views and creating templates (html) as per our requirement. Then run server using the following command.
python3 manage.py runserver -
Then check it with browser, using this url:
http://localhost:8000/