Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imanaspaul/django-ecommerce-tutorial-manascode
Django eCommerce tutorial for beginners
https://github.com/imanaspaul/django-ecommerce-tutorial-manascode
bootstrap4 django django-project ecommerce html5 python-3-6
Last synced: about 5 hours ago
JSON representation
Django eCommerce tutorial for beginners
- Host: GitHub
- URL: https://github.com/imanaspaul/django-ecommerce-tutorial-manascode
- Owner: imanaspaul
- Created: 2019-09-11T06:10:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T06:54:31.000Z (27 days ago)
- Last Synced: 2024-10-19T09:26:48.253Z (25 days ago)
- Topics: bootstrap4, django, django-project, ecommerce, html5, python-3-6
- Language: Python
- Size: 415 KB
- Stars: 199
- Watchers: 12
- Forks: 53
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ποΈ Django e-Ρommerce tutorial manascode
Django e-commerce tutorial for beginners.
[Follow the tutorials to learn more.](https://manascode.com)
## π Get started
1. Clone the repository:
```bash
git clone https://github.com/imanaspaul/Django-eCommerce-tutorial-manascode.git
```2. Create virtual enviroment:
```bash
virtualenv env
source env/bin/activate # for Linux
.\env_name\Scripts\activate # for Windows
```3. Install all the dependencies:
```bash
pip install -r requirements.txt
```4. Change directory to `ecommerce`:
```bash
cd ecommerce
```5. Run migrations:
```bash
py manage.py migrate
```6. Run the server:
```bash
py manage.py runserver
```