Hello Nitin,
First of all, you start with the following basics:
- Install Django, database(if you do not wish to use the default one)
- Register the Database to you Django project inside settings.py
- a Django project.
- create an APP.
- register the APP in settings.py.
- create an urls.py under the APP.
- create a templates folder under your ROOT_DIR(project level).
- create a static folder inside your APP.
- Decided on the HTML Layout that you would like to have for your pages.There are lots of ready- made HTML templates available on various online websites, you can use them if you do not wish to create on your own. If you have knowledge about creating front-end pages then I would recommend you start on your own, that way you would know what is where.
- start creating HTML pages inside the
templates folder.
- under the static folder create sub directories(CSS, js, media).
Once you are done with the front-end , now return to back-end logic.
- Decide on the types of form fields that you need to have in your APP.
- Now manually write down the fields name on a piece of paper and make their entry in the models.py. I am assuming that you know how to create models.
The list will go on, but start with the above, and then ask questions on the advanced part. You will face lots of issues while working on the above points itself.
For basic configuration, you can follow my project that I have on git-hub, below is the link
| | SuperGoogler/ShoppingCartContribute to SuperGoogler/ShoppingCart development by creating an account on GitHub. |
|
|
Do not try to understand the advance part of the project, just see how the project skeleton is developed, I am sure you will get lots of good information.