https://github.com/genesisblock3301/e-commerce
This is ecommerce mini project . In this project I implement minimal implementation of ecommerce based web app. In this web site user can add project to cart , tracking the order by using order ,searching item etc.
https://github.com/genesisblock3301/e-commerce
ajax django jquery jquery-ajax
Last synced: about 1 year ago
JSON representation
This is ecommerce mini project . In this project I implement minimal implementation of ecommerce based web app. In this web site user can add project to cart , tracking the order by using order ,searching item etc.
- Host: GitHub
- URL: https://github.com/genesisblock3301/e-commerce
- Owner: GenesisBlock3301
- Created: 2020-11-05T18:30:12.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-27T04:37:55.000Z (about 5 years ago)
- Last Synced: 2025-01-08T18:47:38.907Z (about 1 year ago)
- Topics: ajax, django, jquery, jquery-ajax
- Language: HTML
- Homepage:
- Size: 12.7 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project title: E-commerce
## Aim of this project:
>
This is learning purpose project. In this project I want to learn new something. So this project you will get:
---
> - Use Django's tools to create a skeleton website and application.
> - Start and stop the development server.
> - Create models to represent application's data.
> - Use the Django admin site to populate site's data.
> - Create views to retrieve specific data in response to different requests, and templates to render the data as HTML to be displayed in the browser.
> - Create mappers to associate different URL patterns with specific views.
> - Add user authorization and sessions to control site behavior and access.
> - Work with forms.
> - Use Django's security effectively.
---
# Requirements
---
- Basic Django and Django REst Framework.
- Basic Python and knowledge about OOP.
- Knowledge about database queryset.
- A good IDE like pycharm.
- Minimum knowledge about HTML,CSS and Bootstrap.
---
# Instalisation
- Linux:
``` pip3 install django ```
- Windows:
``` pip install django ```
# Project creation command:
---
```django-admin startproject Local-Library```
# Important command for this project-
``` python3 manage.py startapp app_name ``` - **For Creating App**
``` python3 manage.py makemigrations``` - **Migrations Model**
``` python3 manage.py migrate```- **For migrating to Database**
``` python3 manage.py collectstatic``` **Collecting static files**