Site icon JnPnote

Following Django Tutorial (CRM)-Part1

This post is for myself to remember how to build Django project.
I did follow the tutorial from the JustDjango Learn website free tutorial.
And this is the fourth tutorial named Getting Started With Django.
I am not going over all the details and descriptions for each part. There are good explanations on video of the JustDjango Learn. So, visit their site and try their tutorials if you need more details. Also, the orders of this post and their video might be different because I put things first what I think should come first.

This post will be about basic starts.
I am doing this on Windows 10 with just Windows PowerShell. Not using virtual machines at all.

1. Prerequisite

2. Starting a Project

python -m virtualenv env
env/Scripts/activate
pip install django==3.2.11
pip freeze > requirements.txt
django-admin startproject djangocrm .

3. Git

Done for starting the project.

Exit mobile version