The Detailed explanation for Django Forms is on YouTube
-
Clone this project and upen the project filder in the
Terminal
. -
Create the virtual environment using commad
python -m venv env
. -
To activate environment you can perform command given below
# FOR WINDOWS env/script/activate
# FOR LINUX env/bin/activate
-
After activating environment run command to install all requirements run command
pip install -r requirements.txt
-
Agter installing all the packages run 2 command given below
python manage.py makemigrations
python manage.py migrate
-
Now, it is veru important to create
super user
and to create that you need to perform commandpython manage.py createsuperuser
and provide all the details asked after running that command. -
Now Finally run the server by performing command
python manage.py runserver
.