https://github.com/sad0xer/firstpro
This is simple E-Commerce website built in Django. This Django Project was build with help of @CodeWithHarry's YouTube video.
https://github.com/sad0xer/firstpro
django django-project python tutorial website
Last synced: 6 months ago
JSON representation
This is simple E-Commerce website built in Django. This Django Project was build with help of @CodeWithHarry's YouTube video.
- Host: GitHub
- URL: https://github.com/sad0xer/firstpro
- Owner: SAD0XER
- Created: 2023-02-03T14:58:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-05T15:36:17.000Z (over 2 years ago)
- Last Synced: 2023-05-05T16:49:27.338Z (over 2 years ago)
- Topics: django, django-project, python, tutorial, website
- Language: HTML
- Homepage:
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Django Tutorial In Hindi
[](https://youtu.be/JxzZxdht-XY)
About This Project
This project was build in [this](https://youtu.be/JxzZxdht-XY) YouTube video. All the code of that project is [here](https://github.com/SAD0XER/FirstPro).
This project is a simple E-Commerce website but there is no signIn page in this website. So, you need to create signIn page on your own.
If you want to create your account in this website then you need to create by command line (CLI).
The official sourse code from the creator is [HERE](https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqazdUY3c4V3lEaTBUeWJzNDhJRGliT0NzNENJd3xBQ3Jtc0tsNXhFNGZ3X21mUWNRVm1VLXVKVkx5NjVRNHVtLUFIZGQ3QjNYOHFnOGdWZ3hWSVViS25tc2pBb3hoOW01aHNmdjBrdm5JcVN4eFR6YUJsQ3lDTHN0RDNBTFFucGVjWVc2SUdZejYyUmprQ3lBZjlEUQ&q=http%3A%2F%2Fcodewithharry.com%2Fvideos%2Fpython-tutorials-for-absolute-beginners-127&v=JxzZxdht-XY).**Video Link:** [Django Tutorial In Hindi](https://youtu.be/JxzZxdht-XY)
**YouTube channel:** [CodeWithHarry](https://www.youtube.com/@CodeWithHarry)
# Steps to Run this Django Project
#### 1. Fork the repository [click here](https://github.com/SAD0XER/FirstPro/fork) else you can download ZIP of this project from [here](https://github.com/SAD0XER/FirstPro/archive/refs/heads/main.zip).
#### 2. Clone forked repository on your local system OR if you've ZIP file then extract that ZIP file.
#### 3. Open PowerShell on that repository OR in that extracted project folder and run following commands:> :warning: **NOTE:** Here I am considering that you have already installed python (version 3.10.0) in your system. If you have not installed yet, please kindly download from official python website. ([Download Python](https://www.python.org/downloads/)) To install specific version of python run this command `pip install python==3.10.0` or `py -m pip install python==3.10.0`
#### 4. Install Django (version 4.0.1)
```
pip install django
```
> To install perticular version of django run this command `pip install django==4.0.1`#### 5. Create super user (Creating Account for LogIn)
```
python manage.py createsuperuser
```1. Enter username
2. Enter Email Address (Only If you want to, otherwise skip by pressing Enter/Return)
3. Enter Password (Password will be invisible while entering in terminal)
4. Re-Enter the Password
#### 6. Now run the project
```
python manage.py runserver
```#### 7. Now copy the URL
URL is something like `http://127.0.0.1:8888/` if you are in windows.
#### 8. Open that URL in your browser.
#### 9. Now enter your Username and Password on login page.
#### 10. You are done! :smile:
---
### :warning:Note: Fork this project and build further more as you want.:smile: